Format the text in JavaScript alert box

前端 未结 7 2290
广开言路
广开言路 2020-12-09 02:19

How can I format the text in a JavaScript alert box? I need a word in the text to be underlined.

7条回答
  •  囚心锁ツ
    2020-12-09 02:33

    You can use only:

    \b = Backspace 
    \f = Form feed 
    \n = New line 
    \r = Carriage return 
    \t = tab
    \000 = octal character 
    \x00 = hexadecimal character 
    \u0000 = hexadecimal unicode character
    

    So, you can insert different ASCII characters, but not format them (like italic or bold).

    EDIT I also have to mention, that in fact alert acts like toString conversion, so including tags and/or styles is not possible.

提交回复
热议问题