我正在尝试编写一个javascript函数,它可以调用按钮单击但通过div类id。怎么写呢?
<body>
<div class="content">
<button>Click me</button>
</div>
</body>
点击后应该写下消息I am here
。
答案 0 :(得分:1)
答案 1 :(得分:0)
提供html的Javascript解决方案:
document.getElementsByClassName('content')[0].onclick = function () {alert("I am here");};
div中任何按钮的Javascript:
message = function () {
alert("I am here");
};
var items = document.getElementsByClassName('content')[0].children;
for (var i in items) {
if (items[i].tagName == "BUTTON") {
items[i].onclick = message;
}
}
答案 2 :(得分:-1)
$(function(){
$(".content").find("button").on("click",function(){
alert("I am here");
});
});