html代码
<body>
<h1 align="center">Are you ready?</h1>
<h2 align="center">Just answer Yes or No!</h2>
<div class="wrapper">
<button id="ohyes" class="buttonYes"> Yes </button>
<button id="ohno" class="buttonNo"> No </button>
</div>
</body>
jQuery代码
<script>
$(function () {
$("#ohno").on({
mouseover: function () {
$(this).css({
left: (Math.random() * 800) + "px",
right: (Math.random() * 800) + "px",
top: (Math.random() * 400) + "px",
});
}
});
$("#ohyes").click(function () {
alert("yes"); //use .val() if you're getting the value
});
});
</script>
我试图在 jquery 中调用函数首先工作正常按钮在鼠标悬停时移动但是当我单击具有 id ohyes 的按钮时没有显示任何警报框?有什么建议么?