首页 > 代码库 > jQuery获取属性

jQuery获取属性

jQuery在获取jQuery对象的属性时,出现attr()获取不到的情况,此时,请使用prop()获取

 

如下为经常用到的:

var oHtml=$(this).prop("outerHTML");$(this).prop("checked", "checked");

  

jQuery获取属性