如何在 JavaScript 中弹出警报?
如何在 JavaScript 中弹出警报?
我尝试了 alert"HELLO"
但没有成功。
有人可以告诉我正确的语法吗?
How do I pop up an alert in JavaScript?
I tried alert"HELLO"
but that didn't work.
Can someone tell me the correct syntax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
只需添加括号即可
Just add parantheses
有几种方法。
使用网络浏览器,在地址栏中输入此代码。
javascript:alert("Hello World!")
在 Web 浏览器中打开 Web Developer,转到控制台并输入:
alert("Hello World!")
在 .html 或 .js 代码中键入代码,如上面其他答案中所示。
There are a few ways.
Use your web browser, type this code in address bar.
javascript:alert("Hello World!")
Open web developer in your web browser, go to console and type:
alert("Hello World!")
Type the code in .html or .js code as shown in other answers above.
这是带有警报框的 JavaScript 函数。通过单击提交按钮来调用此函数。
Here is the JavaScript function which has an alert box. This function is called by clicking on the submit button.
您需要添加括号:
You need to add parentheses:
与 VBScript 不同,JavaScript 需要在函数调用两边加上括号。
因此,您需要编写
alert("Hello!");
最好(但不是必需)每个语句都以分号
;
结束。最后,如果您还没有这样做,则需要将其放入脚本块中,如下所示:
您可以将 JavaScript 放入 HTML 页面的脚本标记内,或者可以制作独立的
.js
文件并双击它(在 Windows 中)以使用 WSH 运行它。Unlike VBScript, JavaScript requires parentheses around function calls.
Therefore, you need to write
alert("Hello!");
It's also preferable (but not required) to end every statement with a semicolon
;
.Finally, if you aren't already, you need to put it in a script block, like this:
You can put JavaScript inside a script tag in an HTML page, or you can make a standalone
.js
file and double-click on it (in Windows) to run it using WSH.如果您遇到警报问题,这可能意味着您的浏览器中的 javascript 被禁用,但如果不是,这些方法应该可以解决您的问题。
if you're having problems with alerts, it probably means your javascript is disabled in your browser, but if it isn't these methods should solve your issue.