如何创建警报框,其中包含可在警报框或对话框中单击的链接?

时间:2017-05-05 14:15:01

标签: javascript jquery html jsp

我需要一个警告框或一个对话框,我可以点击框中的网址链接。

   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?
    }

是否有另一种方法可以创建一个警告框,我可以在对话框中单击?

1 个答案:

答案 0 :(得分:0)

你需要这样的东西:

http://jquerymodal.com/

然后你可以设计自己的html-popup-window。