首页 > Web开发 > 详细

jQuery 判断是否包含某个属性

时间:2015-12-28 23:19:27      阅读:252      评论:0      收藏:0      [点我收藏+]

1、Get the attribute, check the value

var attr = $(this).attr(‘name‘);

// For some browsers, `attr` is undefined; for others, `attr` is false. Check for both.
if (typeof attr !== typeof undefined && attr !== false) {
  // Element has this attribute
}

2、Native JavaScript has a way

$(this)[0].hasAttribute("name");

jQObject[0].hasAttribute("name");

3、Filter the selection

$(this).is(‘[name]‘);

$(this).filter("[name=‘choice‘]");

 

jQuery 判断是否包含某个属性

原文:http://www.cnblogs.com/yunspider/p/5084191.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!