基于jQuery的遍历同id元素 并响应事件的代码
代码如下:
<!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>
上一篇: Python字典(一)
下一篇: P1478 陶陶摘苹果(升级版)