gpt4 book ai didi

jquery - 为什么我无法使用 jQuery 在 IE 中淡出该表行?

转载 作者:行者123 更新时间:2023-12-03 22:56:40 25 4
gpt4 key购买 nike

我无法让表格行在 IE 中淡出。它可以在 Chrome 中运行,但不能在 IE 中运行。它只是变得非常“轻”并停留在屏幕上。我尝试了带或不带兼容模式的 IE8。

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">

function hideIt()
{
$('#hideme').fadeTo("slow", 0.0);
}

</script>
</head>
<body>
<table>
<tr id='hideme'>
<td>Hide me!</td>
</tr>
</table>
<button onclick='hideIt();'>Hide</button>
</body>
</html>

是否有平滑淡入淡出的解决方法/解决方案?

最佳答案

是的,这是 IE 中的一个错误(功能?)。如果将其应用于 td 元素而不是 tr,您将获得所需的效果。所以,

$('#hideme>td').fadeTo("slow", 0.0);

关于jquery - 为什么我无法使用 jQuery 在 IE 中淡出该表行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2437026/

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