我的页面上有2个元素,单击button1它应该隐藏,而当我单击块元素
时,背景颜色应该变为绿色..
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#button1").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<button id="button1">Button1</button>
<p>This is a block element</p>
</body>
</html>
答案 0 :(得分:1)
$(document).ready(function () {
$("#button1").click(function () {
$(this).hide();
});
$("p").click(function () {
$(this).css('background-color', 'green');
});
});
答案 1 :(得分:0)
这很简单:您需要将Click事件处理程序与两个元素绑定。
<script>
$(document).ready(function(){
$("#button1").click(function(){
$(this).hide();
});
$("p").click(function () {
$(this).css('background-color', 'green');
});
});
</script>
或者你也可以这样做 -
$(document).ready(function(){
$("#button1, p").click(function(e){
if(e.target.nodeName === "BUTTON"){
$(this).hide();
}
else if(e.target.nodeName === "P"){
$(this).css('background-color', 'green');
}
});
});