jquery数据类型有哪些-亚博电竞手机版
jquery数据类型有哪些
今天小编给大家分享一下jquery数据类型有哪些的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。
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。比如
vartypeofstr=typeof"helloworld";//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"。
varx={};vary={name:"pete",age:15};
对于上面的y对象,可以采用圆点获取属性值,比如y.name返回"pete",y.age返回15
7.1 array notation(数组访问方式访问对象)
varoperations={increase:" ",decrease:"--"}varoperation="increase";operations[operation]//" ";operations["multiply"]="*";//"*"
上面operations["multiply"]="*"; 往operations对象中添加了一个key-value对。
7.2 对象循环访问:for-in
varobj={name:"pete",age:15};for(keyinobj){alert("keyis" [key] ",valueis" obj[key]);}
7.3 任何对象不管有无属性和值,都默认为true
7.4 对象的prototype属性
jquery中用fn(prototype的别名)动态为jquery instances添加对象(函数)
varform=$("#myform");form.clearform;//undefinedform.fn.clearform=function(){returnthis.find(":input").each(function(){this.value="";}).end();};form.clearform()//worksforallinstancesofjqueryobjects,becausethenewmethodwasadded
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
vararr=[1,2,3];
array是可变的lists。array也是对象。
读取或设置array中元素的值,采用这种方式:
varval=arr[0];//val为1arr[2]=4;//现在arr第三个元素为4
9.1 数组循环(遍历)
for(vari=0;i但是当考虑性能时,则最好只读一次length属性,如下:
for(vari=0,j=a.length;ijquery提供了each方法遍历数组:
varx=[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 数组其他内置方法:
varx=[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