我需要一个警告框或一个对话框,我可以点击框中的网址链接。
var goToSystemForm = confirm('Please complete System Form and get a signature
approval before attaching the form. Would you like to be directed there now?');
if (goToSystemForm){
window.location.href = 'https://www.stackoverflow.com';
}
else{
//do something else or nothing?
}
是否有另一种方法可以创建一个警告框,我可以在对话框中单击?