美文网首页
Attribute Property attr prop

Attribute Property attr prop

作者: dayindayout | 来源:发表于2018-07-06 16:00 被阅读0次

原生下(Attribute 和Property):

******** 性别:<input type='radio' name='sex' value=‘男’>      <input  type='radio' name='sex' value='女'>

******** document.getElementsByName('sex')[0].checked='true'

********  document.getElementsByName('sex')[0].checked='' //false在谷歌下没有用

jquery下(2.0以上版本的jQuery已经不再支持IE8及以下版本的IE浏览器)----(attr和prop):

对应原生的Attribute 和Property,所以采用prop来$('input[name="sex"]').eq(0).prop(true)

*****prop,Property 去给属性赋值如果标签上没值,是不会更新到标签上的,可以通过key-value直接获取并赋值;

*** Attribute ,attr是会直接给标签上的

相关文章

网友评论

      本文标题:Attribute Property attr prop

      本文链接:https://www.haomeiwen.com/subject/pvovuftx.html