欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

基于jQuery的遍历同id元素 并响应事件的代码

程序员文章站 2022-06-20 23:02:20
代码如下:

代码如下:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>jquery遍历同id元素,并响应消息</title>
<script language="javascript" src="https://demo.jb51.net/jslib/jquery/jquery-1.7.2.min.js"></script>
<script language="javascript">
$(document).ready(function(){
$("[id=test]").each(function(){
$(this).click(function(){
$(this).val('被单击');
alert('触发了单击消息!');
});
});
});
</script>
</head>

<body>
<label for="test"></label>
<input type="text" name="test" id="test" />
<br /><br />
<label for="test"></label>
<input type="text" name="test" id="test" />
</body>
</html>