标签:
if( window.chrome && window.chrome.webstore && Object.keys(window.chrome.webstore).length < 3 ){ //判断是否360浏览器
$(‘:text‘, ‘:password‘).each(function(){ //遍历不需要自动填充的元素
//复制该元素(this.outerHTML)并添加到后面,然后隐藏该元素并置name属性为空
//只能隐藏而不能使用remove方法去除该元素,否则失效
$(this).after(this.outerHTML).attr(‘name‘,‘‘).hide();
})
}
标签:
原文地址:http://www.cnblogs.com/3teeth/p/4661594.html