gpt4 book ai didi

php - 如何使用 PHP 添加动态文本框(行)并保存到数据库

转载 作者:可可西里 更新时间:2023-11-01 08:51:28 25 4
gpt4 key购买 nike

我这里有添加动态文本框(行)的 Javascript 代码 我的问题是如何使用 PHP 脚本将动态文本框的值保存到数据库?希望你们能帮助我。谢谢!

<script type="text/JavaScript"> 
function addRow(r){
var root = r.parentNode;//the root
var allRows = root.getElementsByTagName('tr');//the rows' collection
var cRow = allRows[0].cloneNode(true)//the clone of the 1st row
var cInp = cRow.getElementsByTagName('input');//the inputs' collection of the 1st row
for(var i=0;i<cInp.length;i++){//changes the inputs' names (indexes the names)
cInp[i].setAttribute('name',cInp[i].getAttribute('name')+'_'+(allRows.length+1))
}
root.appendChild(cRow);
}
function shownames(){
var allInp=document.getElementsByTagName('input');
for(var i=0;i<allInp.length;i++){
alert(allInp[i].name)
}
}
</script>

我的 HTML 代码:

   <form method="POST" action="#"> <table width="1024" border="0" cellspacing="6" cellpadding="0"> <tr>
<td width="195"><div class="user"><input type="text" name="user_a" id="user" tabindex="6"/></div></td>
<td width="410"><div class="reported"><input type="text" name="user_b" id="reported" tabindex="7"/></div></td>
<td width="399"><div class="reported"><input type="text" name="user_c" id="reported" tabindex="8"/></div></td>
<td width="10"><input name="button" type="button" value="+" onclick="addRow(this.parentNode.parentNode)"></td> </tr> </table> </form>

最佳答案

您必须只使用动态添加的文本框的名称。

 $('form').submit(function() {
var data=($(this).serialize());
return false;
});

此函数获取所有元素值并创建一个存储在数据中的字符串,现在数据将传入ajax调用。

$('form').submit(function() {
var data=($(this).serialize());
$.ajax({
type: "POST",
url: "your_some.php",
data: data,
}).done(function( msg ) {
alert( "Data Saved: " + msg );
});
});

关于php - 如何使用 PHP 添加动态文本框(行)并保存到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13428103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com