我正在尝试on-click
为我正在做的 jquery 事件添加类
我的 html 文件
<head>
<style type="text/css">
.red{ color:red; }
</style>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="js.js"></script>
</head>
<body>
<ul id="list">
<li><a href="">1</a></li>
<li><a href="">2</a></li>
</ul>
</body>
javascript 文件 js.js 是
$(document).ready(function(){
$("li").onclick(function(){ // if i comment this and only add the line billow the all ul>li will red
$("#list").addClass("red");
});
});
当我点击li
的颜色li
将变为红色时,这让我感到困惑,on-click
我正在将类添加.red
到,ul
所以两个链接都应该是红色的,但点击时只有我点击的链接变成红色