困扰我一天的问题,终于知道原因了:
js方法不能与jquery方法同时用!!!
度娘找到了答案:例如
attr("name") 是jquery对象的方法,原生js的方法是getAttribute()。
代码可以写成$(element).attr("name")或者element.getAttribute("name")。
Posted WentingC
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js方法不能与jquery方法同时用相关的知识,希望对你有一定的参考价值。
困扰我一天的问题,终于知道原因了:
js方法不能与jquery方法同时用!!!
度娘找到了答案:例如
attr("name") 是jquery对象的方法,原生js的方法是getAttribute()。
代码可以写成$(element).attr("name")或者element.getAttribute("name")。
以上是关于js方法不能与jquery方法同时用的主要内容,如果未能解决你的问题,请参考以下文章