您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息
免费发信息
三六零分类信息网 > 延安分类信息网,免费分类信息发布

jquery数据类型有几种

2024/2/18 23:39:36发布23次查看
jquery数据类型有14种:1、string字符串类型;2、number数字类型;3、math类型;4、nan非数字和infinity无穷大或无穷小;5、integer整型和float浮点型;6、boolean布尔类型;7、数组类型等等。
本教程操作环境:windows10系统、jquery3.2.1版本、dell g3电脑。
jquery数据类型有几种jquery数据类型有14种
jquery除了包含原生js中的内置数据类型(built-in datatype),还包括一些扩展的数据类型(virtual types),如selectors、events等。
1. string
string最常见,几乎任何一门高级编程语言和脚本语言中都支持,比如hello world!即字符串。字符串的类型为string。比如
var typeofstr = typeof "hello world";//typeofstr为“string"
1.1 string内置方法
"hello".charat(0) // "h""hello".touppercase() // "hello""hello".tolowercase() // "hello""hello".replace(/e|o/g, "x") // "hxllx""1,2,3".split(",") // ["1", "2", "3"]
1.2 length属性:返回字符长度,比如"hello".length返回5
1.3 字符串转换为boolean:
一个空字符串("")默认为false,而一个非空字符串为true(比如"hello")。
2. number
数字类型,比如3.1415926或者1、2、3...
typeof 3.1415926 返回的是"number"
2.1 number转换为boolean:
如果一个number值为0,则默认为false,否则为true。
2.2 由于number是采用双精度浮点数实现的,所以下面这种情况是合理的:
0.1 + 0.2 // 0.30000000000000004
3. math
下面的方法与java中的math类的静态方法类似。
math.pi // 3.141592653589793math.cos(math.pi) // -1
3.1 将字符串化为数字:parseint和parsefloat方法:
parseint("123") = 123 (采用十进制转换)parseint("010") = 8 (采用八进制转换)parseint("0xcafe") = 51966 (采用十六进制转换)parseint("010", 10) = 10 (指定用10进制转换)parseint("11", 2) = 3 (指定用二进制转换)parsefloat("10.10") = 10.1
3.2 数字到字符串
当将number粘到(append)字符串后的时候,将得到字符串。
"" + 1 + 2; // "12""" + (1 + 2); // "3""" + 0.0000001; // "1e-7"
或者用强制类型转换:
string(1) + string(2); //"12"string(1 + 2); //"3"
4. nan 和 infinity
如果对一个非数字字符串调用parseint方法,将返回nan(not a number),nan常用来检测一个变量是否数字类型,如下:
isnan(parseint("hello", 10)) // true
infinity表示数值无穷大或无穷小,比如1 / 0 // infinity。
对nan和infinity调用typeof运算符都返回"numuber"。
另外 nan==nan 返回false,但是 infinity==infinity 返回true。
5. integer 和 float
分为表示整型和浮点型。
6. boolean
布尔类型,true或者false。
7. object
javascript中的一切皆对象。对一个对象进行typeof运算返回 "object"。
var x = {}; var y = { name: "pete", age: 15 };
对于上面的y对象,可以采用圆点获取属性值,比如y.name返回"pete",y.age返回15
7.1 array notation(数组访问方式访问对象)
var operations = { increase: "++", decrease: "--" } var operation = "increase"; operations[operation] // "++"; operations["multiply"] = "*"; // "*"
上面operations["multiply"]="*"; 往operations对象中添加了一个key-value对。
7.2 对象循环访问:for-in
var obj = { name: "pete", age: 15}; for(key in obj) { alert("key is "+[key]+", value is "+obj[key]); }
7.3 任何对象不管有无属性和值,都默认为true
7.4 对象的prototype属性
jquery中用fn(prototype的别名)动态为jquery instances添加对象(函数)
var form = $("#myform"); form.clearform; // undefined form.fn.clearform = function() {return this.find(":input").each(function() { this.value = ""; }).end();}; form.clearform() // works for all instances of jquery objects, because the new method was added
8. options
几乎所有的jquery插件都提供了一个基于options的api,options是js对象,意味着该对象以及它的属性都是optional(可选的)。允许customization。
比如采用ajax方式提交表单,
$("#myform").ajaxform();//默认采用form的action属性值作为ajax-url,method值作为提交类型(get/post)$("#myform").ajaxform({ url: "mypage.php", type: "post" });//则覆盖了提交到的url和提交类型
9. array
var arr = [1, 2, 3];
array是可变的lists。array也是对象。
读取或设置array中元素的值,采用这种方式:
var val = arr[0];//val为1arr[2] = 4;//现在arr第三个元素为4
9.1 数组循环(遍历)
for (var i = 0; i < a.length; i++) { // do something with a[i] }
但是当考虑性能时,则最好只读一次length属性,如下:
for (var i = 0, j = a.length; i < j; i++) { // do something with a[i] }
jquery提供了each方法遍历数组:
var x = [1, 2, 3]; $.each(x, function(index, value) { console.log("index", index, "value", value); });
9.2 对数组调用push方法意味着将一个元素添加到数组末尾,比如 x.push(5); 和 x.[x.length] = 5; 等价
9.3 数组其他内置方法:
var x = [0, 3, 1, 2]; x.reverse() // [2, 1, 3, 0] x.join(" – ") // "2 - 1 - 3 - 0" x.pop() // [2, 1, 3] x.unshift(-1) // [-1, 2, 1, 3] x.shift() // [2, 1, 3] x.sort() // [1, 2, 3] x.splice(1, 2) // 用于插入、删除或替换数组元素,这里为删除从index=1开始的2个元素
9.4 数组为对象,所以始终为true
10. map
the map type is used by the ajax function to hold the data of a request. this type could be a string, an array<form elements>, a jquery object with form elements or an object with key/value pairs. in the last case, it is possible to assign multiple values to one key by assigning an array. as below:
{'key[]':['valuea','valueb']}
11. function:匿名和有名两种
11.1 context、call和apply
in javascript, the variable "this" always refers to the current context.
$(document).ready(function() { // this refers to window.document}); $("a").click(function() { // this refers to an anchor dom element});
12. selector
there are lot of plugins that leverage jquery's selectors in other ways. the validation plugin accepts a selector to specify a dependency, whether an input is required or not:
emailrules: { required: #email:filled }
this would make a checkbox with name emailrules required only if the user entered an email address in the email field, selected via its id, filtered via a custom selector :filled that the validation plugin provides.
13. event
dom标准事件包括:blur, focus, load, resize, scroll, unload, beforeunload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, andkeyup
14. jquery
jquery对象包含dom元素的集合。比如$('p')即返回所有e388a4556c0f65e1904146cc1a846bee...94b3e26ee717c64999d7867364b1b4a3
jquery对象行为类似数组,也有length属性,也可以通过index访问dom元素集合中的某个。但是不是数组,不具备数组的某些方法,比如join()。
许多jquery方法返回jquery对象本身,所以可以采用链式调用:
$(p).css(color, red).find(.special).css(color, green);
但是如果你调用的方法会破坏jquery对象,比如find()和filter(),则返回的不是原对象。要返回到原对象只需要再调用end()方法即可。
相关视频教程推荐:jquery视频教程
以上就是jquery数据类型有几种的详细内容。
延安分类信息网,免费分类信息发布

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录