困扰我一天的问题,终于知道原因了:
js方法不能与jquery方法同时用!!!
度娘找到了答案:例如
attr("name") 是jquery对象的方法,原生js的方法是getAttribute()。
代码可以写成$(element).attr("name")或者element.getAttribute("name")。
标签:attr 代码 原因 gpo log 答案 问题 对象 body
困扰我一天的问题,终于知道原因了:
js方法不能与jquery方法同时用!!!
度娘找到了答案:例如
attr("name") 是jquery对象的方法,原生js的方法是getAttribute()。
代码可以写成$(element).attr("name")或者element.getAttribute("name")。
标签:attr 代码 原因 gpo log 答案 问题 对象 body
原文地址:http://www.cnblogs.com/WentingC/p/8081837.html