摘要:
提示这个错误: 大概意思是,输入元素应该有自动完成的属性,比如: autocomplete=’new-passwordl’. 怎么搞定呢? 链接:Chrome浏览器控制台Input elements should have autocomplete attributes (suggested: "c 阅读全文
摘要:
参考:jQuery的简单选择器 jQuery对象和DOM元素对象之间的方法不能互通使用,如果希望使用DOM的方法,必须将jQuery转换为DOM对象如: console.log($("div")[0]); console.log($("div").get(0)); 这两种方法都可以。 上述$(... 阅读全文