我有一个现有的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。请帮忙。
答案 0 :(得分:1)
尝试添加以下脚本,以便在20 secon后显示Formc。
setTimeout(function(){ $('#FormC').show() }, 20000);