如何在提交表单后将此id添加到PHP变量中?我需要将总值传递给PHP变量.请帮我解决这个问题.
<div class="table-responsive">
<table class="table table-bordered">
<tr>
<th>Total Price</th>
</tr>
<tr>
<td>
<input class="form-control1" type='text' id='txt_totalprice' name='txt_totalprice[]'/>
</td>
</tr>
</table>
</div>
Total: <div id="totalvalue">0</div>
这是脚本
<script type='text/javascript'>
$('#totalvalue').click(function() {
$.post("package.PHP", {
id: $(this).attr('id')
}, function(response) {
alert(response);
});
});
</script>
解决方法:
改变这个:
id: $(this).attr('id')
对此:
id: $(this).text()
创建一个空div:
<div id="saved-value"></div>
将它放在页面上任何您想要的位置.
然后改变你的jQuery:
}, function(response) {
$('#saved-value').html(response);
});
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。