gpt4 book ai didi

javascript - 如何使 $ (":text[placeholder]"在 IE 中工作

转载 作者:太空宇宙 更新时间:2023-11-04 15:26:21 24 4
gpt4 key购买 nike

我的代码包含这些行:

 $(":text[placeholder], :password[placeholder]").each(function(){
//some code
});

它在 chrome 和 ff 上运行良好,但在 IE8 中出现以下错误。

 Object doesn't support this property or method

我该如何解决这个问题?

最佳答案

或者你可以试试这个:

$("input[type='text'], input[type='password']").filter(function(){
var attr = $(this).attr('placeholder');
return typeof attr !== 'undefined' && attr !== false;
}).each(function(){
//some code
});

属性校验码借自here

关于javascript - 如何使 $ (":text[placeholder]"在 IE 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13990121/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com