gpt4 book ai didi

JQuery CSS 在 IE 6、8 中失败

转载 作者:行者123 更新时间:2023-12-01 08:26:24 25 4
gpt4 key购买 nike

这里是代码:

<script type="text/javascript">
function doit(){
$('table td').each(function () {
if ($(this).text().trim() != '')
$(this).css("border", "1px groove white");
});
}
doit();
</script>

这适用于 Chrome 和 Firefox。但在 IE 6 和 8 中我有“对象不支持此属性或方法”

最佳答案

问题不在于 .css(),而在于 .trim()。 IE 没有用于字符串的 native .trim() 方法。

您可以使用 jQuery 的 $.trim() 来代替。

$.trim($(this).text())

因此 if() 语句将是:

if ( $.trim($(this).text()) != '' )
$(this).css("border", "1px groove white");

关于JQuery CSS 在 IE 6、8 中失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3522271/

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