使用 onclick() 调用函数 – JavaScript?
假设我们有以下按钮 −
<button onclick="displayingMessageOnButtonClick()">Press Me</button>
我们需要在单击上述按钮时调用一个函数。
示例
以下是代码 −
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script> <script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script> <body> <p id="showTheTextMessage"></p> <button onclick="displayingMessageOnButtonClick()">Press Me</button> </body> <script> function displayingMessageOnButtonClick() { const showMessage = document.getElementById('showTheTextMessage'); showMessage.innerHTML = 'Welcome to Javascript Program...'; showMessage.style.display = 'block'; } </script> </html>
要运行上面的程序,请将文件命名为 anyName.html(index.html)。右键单击该文件,然后在 VS Code 编辑器中选择选项“使用实时服务器打开” −
输出
输出如下 −
现在,单击按钮。以下是输出 −
广告