广州电脑培训_电脑培训班_电脑培训课程-北大青鸟电脑学校
当前位置:网站首页 > 电脑培训网-电脑学校 > 广州电脑学校 > 正文

广州北大青鸟HTML课程有学Js吗?_广州HTML培训

作者:广州电脑培训甘发布时间:2020-10-19分类:广州电脑学校浏览:940


导读:在JQuery中,对CheckBox的操作分两个阶段,一个是JQuery3.4.0之前的版本,一个是3.4.0之后的版本在3.4.0之前,我们这么做:<input ...

在JQuery中,对CheckBox的操作分两个阶段,一个是JQuery3.4.0之前的版本,一个是3.4.0之后的版本

在3.4.0之前,我们这么做:

<input type='checkbox' id='checkbox'/>

<script>

var isChecked = $('#checkbox').attr('checked'); 

$('#checkbox').attr('checked',true); 

</script>


但是细心的同学会发现,在jQuery3.4.0之后,如果还像上面这么做,那肯定会出问题: $('#checkbox').attr('checked');获取到的值并不是true和false,而是checked或者undefined。

那在3.4.1之后如何进行操作呢?

jQuery在之后的版本中对属性和特性进行了比较细致的区分,什么是特性呢? 特性就是像 checked,selectedIndex, tagName, nodeName, nodeType, ownerDocument, defaultChecked, 和defaultSelected等等这些。

那prop()和attr()到底有什么区别呢?

1.于build-in属性,attribute和property共享数据,attribute更改了会对property造成影响,反之亦然,但是两者的自定义属性是独立的数据,即使name一样,也互不影响,但是IE6、7没有作区分,依然共享自定义属性数据


2.并不是所有的attribute与对应的property名字都一致,比如刚才使用的attribute 的class属性,使用property操作的时候应该是这样className 

t.className='active2';

对于值是true/false的property,类似于input的checked attribute等,attribute取得值是HTML文档字面量值,property是取得计算结果,property改变并不影响attribute字面量,但attribute改变会一向property计算。


var t=document.getElementById('test3');

console.log(t.getAttribute('checked'));//null

console.log(t.checked);//false;

 t.setAttribute('checked','checked');

console.log(t.getAttribute('checked'));//checked

console.log(t.checked);//true

t.checked=false;

console.log(t.getAttribute('checked'));//checked

console.log(t.checked);//false


4、对于一些和路径相关的属性,两者取得值也不尽相同,但是同样attribute取得是字面量,property取得是计算后的完整路径


<a id="test4" href="#">Click</a>

var t=document.getElementById('test4');

console.log(t.getAttribute('href'));//#

console.log(t.href);//file:///C:/Users/bsun/Desktop/ss/anonymous.html#


广州电脑学校排行
最近发表
标签列表