gpt4 book ai didi

jquery - 使用 jQuery 应用 CSS 样式

转载 作者:行者123 更新时间:2023-11-28 13:02:17 25 4
gpt4 key购买 nike

在 Site.css 中我有这个:

tr {
background-color: #fff;
}
.alt {
background-color: #ccc;
}

在我看来我有这个:

$(document).ready(function() {
$('tr:even').addClass('alt');
});


<h2>Shakespeare's Plays</h2>
<table>

<tr >
<td>As You Like It</td>
<td>Comedy</td>
<td></td>
</tr>

<tr>
<td>All's Well that Ends Well</td>
<td>Comedy</td>
<td>1601</td>
</tr>

</table>

但我的偶数行没有任何样式……看起来都一样……我已经在我的元素中安装了 jquery 包

最佳答案

确保您的页面中包含 jQuery。在您的头脑中的脚本之前添加以下内容:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>

关于jquery - 使用 jQuery 应用 CSS 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16094217/

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