How do I put a link to a webpage in a JScript Alert dialog box?

前端 未结 7 1649
遥遥无期
遥遥无期 2021-01-13 22:28

I would like to put a link to a webpage in an alert dialog box so that I can give a more detailed description of how to fix the error that makes the dialog box get created.

相关标签:
7条回答
  • 2021-01-13 23:07

    Even if you could, alert() boxes are generally modal - so any page opened from one would have to open in a new window. Annoying!

    0 讨论(0)
  • 2021-01-13 23:08
    alert("There was an error. Got to this page to fix it.\nwww.TheWebPageToFix.com");
    

    That's the best you can do from a JavaScript alert(). Your alternative option is to try and open a new tiny window that looks like a dialog. With IE you can open it modal.

    0 讨论(0)
  • 2021-01-13 23:12

    If you really wanted to, you could override the default behavior of the alert() function. Not saying you should do this.

    Here's an example that uses the YUI library, but you don't have to use YUI to do it:

    YUI-based alert box - replace your ugly JavaScript alert box

    0 讨论(0)
  • 2021-01-13 23:19

    You can't. Alert boxes don't support html. You should display the error as part of the page, it's nicer than JS alerts anyway.

    0 讨论(0)
  • 2021-01-13 23:20

    You can't - but here are some options:

    • window.open() - make your own dialog
    • Use prompt() and instruct the user to copy the url
    • Use JavaScript to just navigate them to the url directly (maybe after using confirm() to ask them)
    • Include a div on your page with a [FIX IT] button and unhide it
    • Use JavaScript to put a fix it URL into the user's clipboard (not recommended)
    0 讨论(0)
  • 2021-01-13 23:28

    Or use window.open and put the link there.

    0 讨论(0)
提交回复
热议问题