jQuery动态增加一行tr并提交里面的内容到数据库的时候为什么只能插入一行?我想一次插入多条求帮忙看看 30
<formid="form"name="form"method="post"action="addmore.php"enctype="multipart/form-dat...
<form id="form" name="form" method="post" action="addmore.php" enctype="multipart/form-data" ><table class="table table-bordered table-hover m10"
<tr> <td class="tableleft">标题</td> <td> <input name="title" type="text" id="title" style="width:150px;vertical-align:middle;" maxlength="40"> <lable>作者</lable> <input name="author" type="text" id="author" style="width:150px;vertical-align:middle;" maxlength="40" > <lable>时间</lable> <input name="time" type="text" id="time" style="width:150px;vertical-align:middle;" maxlength="40" onClick="WdatePicker()"> <lable>内容简介</lable> <input name="content" type="text" id="content" style="width:300px;vertical-align:middle;" maxlength="50" > <input type="button" class="btn btn-success" onclick ="add_tr(this)" value="追加" id="addTable"/> <input type="button" class="btn btn-success" onclick="del_tr(this)" value="删除" id="deleteTable"/> <input type="text" class="a b" id="text" name="file" id="file"/> <input type="file" id="file" name="file" style="display:none" onChange="document.getElementById('text').value = this.value"> <button type="button" class="a c" onClick="document.getElementById('file').click()">浏览...</button> <input type="submit" class="a c" name="submit" value="上传" onclick="submitForm(this.value)"/> </form> </td> </tr> 展开
<tr> <td class="tableleft">标题</td> <td> <input name="title" type="text" id="title" style="width:150px;vertical-align:middle;" maxlength="40"> <lable>作者</lable> <input name="author" type="text" id="author" style="width:150px;vertical-align:middle;" maxlength="40" > <lable>时间</lable> <input name="time" type="text" id="time" style="width:150px;vertical-align:middle;" maxlength="40" onClick="WdatePicker()"> <lable>内容简介</lable> <input name="content" type="text" id="content" style="width:300px;vertical-align:middle;" maxlength="50" > <input type="button" class="btn btn-success" onclick ="add_tr(this)" value="追加" id="addTable"/> <input type="button" class="btn btn-success" onclick="del_tr(this)" value="删除" id="deleteTable"/> <input type="text" class="a b" id="text" name="file" id="file"/> <input type="file" id="file" name="file" style="display:none" onChange="document.getElementById('text').value = this.value"> <button type="button" class="a c" onClick="document.getElementById('file').click()">浏览...</button> <input type="submit" class="a c" name="submit" value="上传" onclick="submitForm(this.value)"/> </form> </td> </tr> 展开
2015-03-17
展开全部
事件是在网页加载的时候都绑定好了,动态添加的tr上其实并没有绑定事件,如果想动态绑定的话可以用live来绑定,live方法用法和bind相同。
比如想给所有tr动态绑定click事件,$("tr").live("click",function(){/*…………*/}) ,强烈建议你在动态添加tr后给新添加的tr单独绑定一次事件!
比如想给所有tr动态绑定click事件,$("tr").live("click",function(){/*…………*/}) ,强烈建议你在动态添加tr后给新添加的tr单独绑定一次事件!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询