所以..我有这个完全倒退的项目,但基本上我必须提供一个工作表单,添加一些 item_ID 的数量,然后重定向到我使用的框架的购物车页面。
当然,我不只是给我的框架换皮,并为他定制它的功能。这家伙有一些他“自己写”的破解的 php 页面,他坚持将表格硬编码到其中。
无论如何,我有一个表单可以在操作中提交给我的 cart.php
<form name="orderform" method="post" action="http://s429036015.onlinehome.us/cart.php" id="orderform">
<input type="hidden" name="mode" value="add" />
<input type="hidden" name="productid" value="140" />
<input type="hidden" name="cat" value="" />
<input type="hidden" name="page" value="" />
Qty <input type="text" id="product_avail" name="amount" />
<button class="button main-button list-button add-to-cart-button" type="submit" title="" onClick="location.href='cart.php'">
<span class="button-right"><span class="button-left">Add to cart</span></span>
</button>
</form>
上面的表单正确提交,输入数量,会话存储数据并且商品在购物车中就好了....但是,那个onclick
事件<button>
不起作用!
我什至试过这个
<button class="button main-button list-button add-to-cart-button" type="submit" title="" onClick="GotoPage(); return:true;">
在表单之前使用此脚本
<script type="text/javascript">
function GotoPage() {
window.location = "http://s429036015.onlinehome.us/cart.php";
}
</script>
有人有想法么?使我抓狂...