HTML Button onClick事件

HTML < button onclick =“”> 是一个事件属性, 当单击按钮时, 它将执行脚本。所有浏览器均支持此属性。单击按钮时, 它也用于调用函数。
句法:

< button onclick=" single value script">

例子:
示例1:以下示例描述了如何使用button标签:
< !DOCTYPE HTML> < html> < head> < title> example of onclick button< /title> < script> function welcome() { window.open("https://www.srcmini.com/"); } < /script> < /head> < body style = "text-align:center"> < button onclick="welcome()"> Welcome to our website < /button> < /body> < /html>

立即测试
【HTML Button onClick事件】输出:
HTML Button onClick事件

文章图片
浏览器支持
Element Chrome IE Firefox Opera Safari
< onClick> Yes Yes Yes Yes Yes

    推荐阅读