在table表中,每一行里面都有一个button按钮,怎么实现点击按钮就能把该行的值传给php处理页面?

如题所述

第1个回答  2014-10-26
通过GET把值传给一个页面处理
第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!";
}本回答被提问者和网友采纳
第3个回答  2014-10-26
传个id值过去就行啦追问

可否写一句代码呢?我这有写好像不对啊~

相似回答