Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个导航,当单击其中一个导航项时,将使用 jQuery 将其 z-index 更改为 0。然后,2 秒后,我希望 z-index 更改为 2。
我尝试使用 delay() 但显然在更改 CSS 时这不起作用。
像这样使用 setTimeout
$(elem).css('z-index','0'); setTimeout(function(){ $(elem).css('z-index','2'); },2000)
在 javascript 中,您可以使用 setTimeout 或 setInterval 来完成
setTimeout("javascript statement",milliseconds);
http://www.w3schools.com/js/js_timing.asp