我点击这个javascript以点击删除div,但它根本不起作用:(
你能帮帮我吗?我会很高兴(我已经尝试搜索其他问题)有JS
onclick="setTimeout('$('#wait').remove()', 11000);"
答案 0 :(得分:1)
错误的语法和引号用法。 这样:
onclick = "setTimeout(function() { $('#wait').remove() }, 11000);";
是正确的。
答案 1 :(得分:0)
请注意处理程序中的嵌套单引号。那不会结束。浏览器应该用这个做什么?
'$('#wait').remove()'
你真的想要定义一个函数并使用那个。您可以避免passing a string to setTimeout()
,多级引用等所有陷阱。
function hideit() {
$('#wait').remove();
}
// ...
<button onclick="setTimeout(hideit, 11000);">click me</button>
答案 2 :(得分:0)
您应该使用jQuery中的.delay
和.queue
,而不是在onclick
中使用一些内嵌的JavaScript。
$('#clickme').on('click', function(){
$('#wait').delay(11000).queue(function(){
$(this).remove().dequeue()
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="wait">Gone in 11 Seconds</div>
<button id="clickme">Click me to start the countdown</button>
答案 3 :(得分:0)
我认为几乎所有这些解决方案都能奏效。这是另一个或许更优雅的版本,你在那里做的,Chymmi。
JsFiddle演示:https://jsfiddle.net/kvvbbz6e/4/
$(document).ready(function(){
//--------------------------------------------------------------
// this is what you would need
var waitButton = $('#wait'),
waitButtonTimer;
waitButton.on('click',function(){ // clicking this a second time will reset the timer.
clearInterval(waitButtonTimer);
waitButtonTimer = setTimeout(function(){
waitButton.off('click');
$('.infolabel').text('click event unbound');
}, 4000);
});
//--------------------------------------------------------------
});
<div id="wait" class="button">Wait Button</div>
<span class="infolabel">Click event bound</span>
.button {
display: inline-block;
color: #666;
height: 24px;
font-size: 9.5pt;
font-weight: bold;
line-height: 22px;
border: 0;
padding: 0 5px;
margin: 0;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 4px;
background: rgb(255,255,255); /* Old browsers */
background: -moz-linear-gradient(top, rgba(255,255,255,1) 60%, rgba(245,245,245,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,rgba(255,255,255,1)), color-stop(100%,rgba(245,245,245,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 60%,rgba(245,245,245,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,1) 60%,rgba(245,245,245,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,1) 60%,rgba(245,245,245,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,1) 60%,rgba(245,245,245,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5',GradientType=0 ); /* IE6-9 */
box-shadow: 0px 1px 1px #fff;
cursor: pointer;
box-sizing: border-box;
-moz-box-sizing: border-box;
}