gpt4 book ai didi

jquery - 一个标签中的多个类(jquery 和 css)

转载 作者:行者123 更新时间:2023-11-28 15:59:49 25 4
gpt4 key购买 nike

我的 HTML 页面如下:

<!DOCTYPE html>
<html>
<head><link rel= "stylesheet" type= "text/css" href="main.css"/>
</head>
<body>
<a href="#" class="hv1 bck">Vedios</a>
<div class="hva1"></div>
<script src="js/jquery.js"></script>
<script src="js/js.js"></script>
<script src="js/main.js"></script>
</body>
</html>

我的 main.css 页面如下:

.bck{background:red; color:green;}

我的js.js页面如下:

$('[class=hv1]').hover(function(){$('[class=hva1]').html('Free video tutorials');});

上面的例子是为了描述我的担忧,事实上我正在尝试在一个标签中编写多个类,一个用于 CSS,一个用于 jquery,不幸的是,如果我将它们一个一个地写成一个或单独地写标签然后它们工作,有没有在一个标签中为这两个标签编写类的解决方案?

最佳答案

您已经使用了 jQuery 选择器[name="value"]:

Selects elements that have the specified attribute with a value exactly equal to a certain value.

如果您更改为 [name~="value"],它会将选择更改为:

Selects elements that have the specified attribute with a value containing a given word, delimited by spaces.

有关其他选择器,请参阅 http://api.jquery.com/category/selectors/

关于jquery - 一个标签中的多个类(jquery 和 css),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27929876/

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