jquery中使用类选择题改变div背景色
代码如下:<head><scripttype="text/javascript"src="/js/jQuery.js"></script><scripttype="tex...
代码如下:
<head>
<script type="text/javascript" src="/js/jQuery.js"></script>
<script type="text/javascript">
$(".test").onclick = function(){
$(this).css({"background": "red"});
};
</script>
</head>
<body>
<div class="test"
style="background-color: gray; width: 300px; height: 200px;"></div>
</body>
</html> 展开
<head>
<script type="text/javascript" src="/js/jQuery.js"></script>
<script type="text/javascript">
$(".test").onclick = function(){
$(this).css({"background": "red"});
};
</script>
</head>
<body>
<div class="test"
style="background-color: gray; width: 300px; height: 200px;"></div>
</body>
</html> 展开
2个回答
展开全部
$(".test").onclick = function(){
$(this).css({"background": "red"});
};
改为:
$(".test").click = function(){
$(this).css({"background-color": "red"});
};
jquery所有的事件绑定都没有on这个关键字。
另外,jquery的事件绑定需要放到readyfunction中去。
具体来说
<head>
<script type="text/javascript" src="/js/jQuery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".test").click(function() {
$(this).css({"background-color": "red"});
});
});
</script>
</head>
<body>
<div class="test"
style="background-color: gray; width: 300px; height: 200px;"></div>
</body>
</html>
$(this).css({"background": "red"});
};
改为:
$(".test").click = function(){
$(this).css({"background-color": "red"});
};
jquery所有的事件绑定都没有on这个关键字。
另外,jquery的事件绑定需要放到readyfunction中去。
具体来说
<head>
<script type="text/javascript" src="/js/jQuery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".test").click(function() {
$(this).css({"background-color": "red"});
});
});
</script>
</head>
<body>
<div class="test"
style="background-color: gray; width: 300px; height: 200px;"></div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询