设置超时的Jquery

时间:2016-09-11 06:27:27

标签: javascript jquery

我有一个现有的jquery代码,要求显示div内容。这是它:

//HealthProfile is missing  
private HealthProfile myProfile;

//the name of the constructor needs to be the same as the class name
public HealthProfileGUI() 

@Override
//you should override actionPerformed not action 
//public void action(ActionEvent e)
public void actionPerformed(ActionEvent e)

现在,我想在这里添加一行启动计时器(超时),在20秒后显示FormC。请帮忙。

1 个答案:

答案 0 :(得分:1)

尝试添加以下脚本,以便在20 secon后显示Formc。

setTimeout(function(){ $('#FormC').show() }, 20000);