i would like to reload the index.html page after clicking “ok” with alertify
我的代码中有这行javascript
1 | alertify.alert("Some speech"); |
单击"确定"后,我想重新加载index.html页面
是否可以在不发出警报的情况下进行确认?
好吧,您可以使用此代码来实现您想要的:
1 2 3 | alertify.alert("This is an alert dialog.", function(){ location.reload(); }); |
下面是演示的链接:http://jsfiddle.net/5hygy/67/
我希望这有帮助。