以下表单“查看此产品”在提交时将触发此功能,该功能将获取产品ID [form_data],并将作为url参数与表单数据一起传递。我成功了,直到获得form_data 但页面没有被重定向。
我强烈怀疑我的功能没有正确结束。
<script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
<script>
$(document).ready(function(){
$(".form-item").submit(function(e){
var form_data = $(this).serialize();
var button_content = $(this).find('button[type=submit]');
window.location = "1stlink.php?variable=" + encodeURIComponent(form_data);
button_content.html('Adding...'); //Loading button text
});
});
提交表格:
<form class="form-item">
<input name="product_code" type="hidden" value="{$row["product_code"]}">
<button type="submit">view this product</button>
答案 0 :(得分:0)
除了&#34;添加......&#34;对话框可以在没有任何Javascript的情况下完成:
<form method='GET' action='1stlink.php' class="form-item">
<input name="product_code" type="hidden" value="{$row["product_code"]}">
<button type="submit">view this product</button>
</form>
&#13;