jQuery实现鼠标单击网页文字后在文本框显示的方法
本文实例讲述了jQuery实现鼠标单击网页文字后在文本框显示的方法。分享给大家供大家参考。具体实现方法如下:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>无标题文档</title>
<scriptsrc="js/jquery.min.js"type="text/javascript"></script>
</head>
<body>
<ul>
<li>张三</li>
<li>李四</li>
<li>王五</li>
<li>赵六</li>
</ul>
<tablewidth="200"border="1"cellspacing="0"cellpadding="0">
<tr>
<td>选择</td>
<td>姓名</td>
</tr>
<tr>
<td><inputtype="checkbox"name="checkbox"value="1"/></td>
<td><inputtype="text"name="username"value=""/></td>
</tr>
<tr>
<td><inputtype="checkbox"name="checkbox"value="1"/></td>
<td><inputtype="text"name="username"value=""/></td>
</tr>
<tr>
<td><inputtype="checkbox"name="checkbox"value="1"/></td>
<td><inputtype="text"name="username"value=""/></td>
</tr>
</table>
<script>
$("ulli").click(function(){
vartext=$(this).text();
$("input").val("");
$("input:checked").parents("td").siblings("td").children("input").val(text);
})
</script>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。