如何在 JavaScript 中弹出警报?

发布于 2024-08-10 12:00:48 字数 95 浏览 6 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

尝蛊 2024-08-17 12:00:49

只需添加括号即可

alert("Hello");

Just add parantheses

alert("Hello");
笑咖 2024-08-17 12:00:49
<script type="text/javascript">alert("Hello");</script>
<script type="text/javascript">alert("Hello");</script>
沉溺在你眼里的海 2024-08-17 12:00:49

有几种方法。

  1. 使用网络浏览器,在地址栏中输入此代码。

    javascript:alert("Hello World!")

  2. 在 Web 浏览器中打开 Web Developer,转到控制台并输入:

    alert("Hello World!")

  3. 在 .html 或 .js 代码中键入代码,如上面其他答案中所示。

There are a few ways.

  1. Use your web browser, type this code in address bar.

    javascript:alert("Hello World!")

  2. Open web developer in your web browser, go to console and type:

    alert("Hello World!")

  3. Type the code in .html or .js code as shown in other answers above.

柒夜笙歌凉 2024-08-17 12:00:49
<html>
<head>
<script type="text/javascript">
  function myFunction(){
    alert("hello");
  }
</script>
 </head>
<body>
<input type="submit" onClick="myFunction()">
</body>
</html>

这是带有警报框的 JavaScript 函数。通过单击提交按钮来调用此函数。

<html>
<head>
<script type="text/javascript">
  function myFunction(){
    alert("hello");
  }
</script>
 </head>
<body>
<input type="submit" onClick="myFunction()">
</body>
</html>

Here is the JavaScript function which has an alert box. This function is called by clicking on the submit button.

秋叶绚丽 2024-08-17 12:00:48

您需要添加括号:

alert("HELLO");

You need to add parentheses:

alert("HELLO");
記憶穿過時間隧道 2024-08-17 12:00:48

与 VBScript 不同,JavaScript 需要在函数调用两边加上括号。

因此,您需要编写 alert("Hello!");

最好(但不是必需)每个语句都以分号 ; 结束。

最后,如果您还没有这样做,则需要将其放入脚本块中,如下所示:

<script type="text/javascript">
    alert("Hello!");
</script>

您可以将 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:

<script type="text/javascript">
    alert("Hello!");
</script>

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.

2024-08-17 12:00:48
<script type="text/javascript" >
  alert("hello");
</script>
<script type="text/javascript" >
  alert("hello");
</script>
享受孤独 2024-08-17 12:00:48

如果您遇到警报问题,这可能意味着您的浏览器中的 javascript 被禁用,但如果不是,这些方法应该可以解决您的问题。

<script type="text/javascript" >
    window.alert("Hello World!");

    alert("Hello World!");
</script>

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.

<script type="text/javascript" >
    window.alert("Hello World!");

    alert("Hello World!");
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文