gpt4 book ai didi

asp.net - 使用 JQuery 更改表格边框颜色

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

我有一个包含 HTML 的用户控件,如下所示:

<table id="tblProgramInfo" runat="server" cellpadding="0" cellspacing="0" class="ProgramInfo">
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="100%" class="tblProgram" abc="def">
<tr>
<td>
Some data
</td>
</tr>
</table>
</td>
</tr>

由于它是用户控件,因此它们可以是具有相同类“ProgramInfo”和“tblProgram”的多个表。现在我使用 Jquery 为“ProgramInfo”类附加了 mouseover 和 mouseout 事件。我想要的是,在 mousemove 和 mouseout 上更改包含类“tblProgram”的内部表格的边框颜色
我的 mousemove 和 mouseevent 是:

$(document).ready(function()
{
$(".ProgramInfo").mouseover(function()
{
// Code here?
});
$(".ProgramInfo").mouseout(function()
{
// Code here?
});
});

另外,我想通过JQuery更改上表的宽度和高度。当我尝试这个时,我得到 width:auto。

最佳答案

查看 jQuery hide() 方法:

http://docs.jquery.com/Events/hover

它为鼠标悬停/移出提供了更清晰的抽象

关于asp.net - 使用 JQuery 更改表格边框颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/545024/

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