gpt4 book ai didi

javascript - jQuery 样式类不起作用

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

为什么我的 jQuery 代码没有增加字体大小?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
a.test { font-size:40px; }
</style>

<script type="text/javascript" src="Scripts/jquery-1.4.1.js">
$(document).ready(function(){
$("a").addClass("test");
});
</script>

<title></title>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>

如果我在元素 a 中编写样式类,字体大小会增加,但当我使用 jQuery 编写时不会。我错过了什么吗?

提前致谢。

最佳答案

您不能在具有 src 属性的脚本标签内添加 JS 代码。相反,立即关闭该脚本标签并为要运行的代码启动一个新标签。

关于javascript - jQuery 样式类不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9831603/

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