第2个回答 推荐于2017-12-16
在table的button控件中添加onclick事件,在onclick事件中获取对应的控件属性,然后传递,以下是我的一个简单测试代码,2个文件:test.php和do.php在本地测试通过:
test.php
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
</head>
<script type="text/javascript">
function doThing() {
var name = document.getElementById("myinput").value;
if (name.length != 0)
{
location.href= "do.php?name=" + name;
}
}
</script>
<body>
<table>
<tr>
<td>name:</td><td><input type="text" name="name" id="myinput" /></td><td><input type="button" value="submit" onclick="doThing();" /></td>
</tr>
</table>
</body>
</html>
do.php
<?php
if (isset($_GET["name"])) {
$name = $_GET["name"];
echo $name;
} else {
echo "fail!";
}本回答被提问者和网友采纳