Hello everyone I am displaying data from mysql
table in a grid using php. Now I want to add a drop down i.e select
in a column so that when the user select the value in a row it will automatically update the data in the mysql table for the current row?
问问题
990 次
2 回答
0
<script>
function updatedab(value)
{
$.ajax({
type: "POST",
data: {db: value},
url: 'update_db.php',
success: function(details){
alert("done");
}
});
}
</script>
于 2013-05-06T09:27:25.720 回答
0
你需要把它放在你的选择上:
<select id="myId" onchange="myFunction()">
myFunction 是一个 javascript 函数,它将使用 Ajax 更新您的数据库。您可以在“myFunction”中添加一个参数,例如当前行ID。
于 2013-05-06T09:18:01.620 回答