PHP-各位大牛帮我看看这段话有没有问题?为什么我运行后输入东西提交不了,是form放的位置不对吗?请给大牛指教一下!!
<head>
<script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.min.js">
</script>
<script>
$(document).ready(function(){
$("#btn1").click(function(){
$("table").append("<tr><form method='post' action='insert.php' > <td><input type='text' name='name'></td><td><input type='text' name='price'></td>" +
"<td><input type='text' name='num'></td><td><input type='text' name='name'></td><td><input type='text' name='date'></td>" +
"<td><input type='submit' value='提交'></td><td><input type='reset' value='重置'></td></form></tr>");
});
});
</script>
</head>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有多种解决方案,下面先说一种吧:
1,将你的<script>..</script>连同里面的内容一起移到</body>与</html>之间,然后在里面增加对你提交按钮的单击事件
问题关键点在于你的表单是JS动态添加的...