日期:2014-05-16 浏览次数:20756 次
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>无标题文档</title>
<script src="jquery-1.10.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$(document).on("click", "input.up", function () {
alert($(this).prev().prev().text());
});
});
</script>
</head>
<body>
<form id="zhuce" action="#" method="post">
<table>
<tbody>
<tr>
<td>
<span id="span1">商品id1</span> <input type="text" id="msg"/> <input type="button" id="update" class="up"/>
</td>
</tr>
<tr>
<td>
<span id="span2">商品id2</span> <input type="text" id="Text1"/> <input type="button" id="Text2" class="up"/>
</td>
</tr>
</tbody>
&