源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <script type="text/vbscript"> sub mySub() MsgBox("Hello" & chr(13) & "world") end sub </script> </head> <body> <button onclick="mySub()">Click to get a messagebox with line feed.</button> </body> </html>
运行结果: