我只是第一次尝试.click,但没有使用div
https://jsfiddle.net/djsreeraj/rnL7stsm/
html
<body>
<div id="score">0</div>
<div id="start">Start</div>
</body>
css代码
#start {
width: 50px;
padding: 10px 15px;
text-align: center;
font: bold 15px arial;
background-color: #dedede;
color: #000;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
position: absolute;
}
#start:hover {
cursor: pointer;
}
这是jquery代码,.click函数不起作用,如何解决?
$(document).ready(function()
{
$("#start").click(function () {
alert("Hello!");
$("#start").hide();
});
});
答案 0 :(得分:1)
看起来你需要在页面中添加jquery。
编辑小提琴:https://jsfiddle.net/rnL7stsm/1/
$(document).ready(function()
{
$("#start").click(function () {
alert("Hello!");
$("#start").hide();
});
});
我也删除了标签。