【发布时间】:2014-10-11 12:48:22
【问题描述】:
我有什么:
$(document).ready(function(e){
// NL flag
$(this).find("#topbar_nl").width('100%');
$(this).find("#midbar_nl").width('100%');
$(this).find("#botbar_nl").width('100%');
});
我需要它来做这样的事情:
$(document).ready(function(e){
// NL flag
$(this).find("#topbar_nl").width('100%');(wait for 2 seconds then go to next command line)
$(this).find("#midbar_nl").width('100%');(wait for 2 seconds then go to next command line)
$(this).find("#botbar_nl").width('100%');(wait for 2 seconds then go to next command line)
});
【问题讨论】: