我必须在延迟时间(几分之一秒)后执行操作。
其实我有这个代码部分:
$("thead.opening").click(function () {
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
alert("INTO second function, chrome: " + is_chrome);
$(this).next().css('width', '10000000em');
$(this).next().css('display', 'table-row-group');
});
我需要做的是替换此警报():
alert("INTO second function, chrome: " + is_chrome);
等待一段时间的操作。
我该怎么做?
谢谢