87,995
社区成员
发帖
与我相关
我的任务
分享<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<a href="#" title="11">11</a><input type="text" /><br />
<a href="#" title="22">22</a><input type="text" /><br />
<a href="#" title="33">33</a><input type="text" /><br />
<script>
var as = document.getElementsByTagName('a');
for(var i = 0,a; a = as[i++];){
if(a.title){
a.onclick = function(){
this.nextSibling.value = this.title;
return false;
};
}
}
</script>
</body>
</html>
<body>
<a title="asdf" href="#">asdf</a>
<a title="qwer" href="#">qwer</a>
<a title="zxcv" href="#">zxcv</a>
<input id="txtValue" type="text" />
</body>
<script>
$('a').click(function() {
$("#txtValue").val($(this).attr("title"));
})
</script>
<script src="../js/jquery-vsdoc.js" type="text/javascript"></script>
<script src="../js/jquery.js" type="text/javascript"></script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="../js/jquery-vsdoc.js" type="text/javascript"></script>
<script src="../js/jquery.js" type="text/javascript"></script>
</head>
<body>
<a title="asdf" href="#">asdf</a>
<a title="qwer" href="#">qwer</a>
<a title="zxcv" href="#">zxcv</a>
<input id="txtValue" type="text" />
</body>
<script>
$('a').click(function() {
$("#txtValue").val($(this).attr("title"));
})
</script>
</html>