Is there a JavaScript alert that doesn't pause the script?

后端 未结 6 1111
甜味超标
甜味超标 2020-11-28 07:51

I\'m looking for something like alert(), but that doesn\'t \"pause\" the script.

I want to display an alert and allow the next command, a form sub

6条回答
  •  迷失自我
    2020-11-28 08:17

    In this case, it would be more appropriate to use DHTML and JavaScript to dynamically display a message, either in a plain HTML element, or something that looks more like a dialog (but isn't). That would give you the control you need. All of the major JavaScript frameworks (YUI, Dojo, and others) would give you the ability to display a message asynchronously.

提交回复
热议问题