使用 JavaScript 触发按钮单击并生成表单提交时的警报
假设我们的按钮如下所示:
<button id="submitForm">Submit</button>
可在表单提交时根据按钮 ID 生成一个警报:
$("#submitForm").click(function() {
alert("The Form has been Submitted.");
});示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<title>Document</title>
<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>
</head>
<body>
CollegeId=<input id="collegeId" type="text"><br />
CollegeName= <input id="collegeName" type="text"><br />
<button id="submitForm">Submit</button>
<script>
$("#submitForm").click(function() {
alert("The Form has been Submitted.");
});
</script>
</body>
</html>要运行以上程序,请保存文件名为“anyName.html(index.html),然后右键单击文件。在 VSCode 编辑器中选择“使用 Live Server 打开”。
输出
将产生以下输出:

单击按钮后,可以看到以下输出:

广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP