我使用簡單的html表單將產品從我的網站提交到遠程託管的Mal電子商務購物車。 我需要在提交表單時打開一個模式窗口(包含一個iframe)。我無法訪問購物車的服務器端編程,那麼有沒有辦法使用onclick html event屬性啓動jQuery模式窗口?如何在html表單提交中打開jQuery模態窗口
現在,窗體底部的onclick屬性會打開一個js瀏覽器警報......基本上我需要用我的jQuery模式對話窗口替換這個js警報。
任何人都可以幫忙嗎?
這裏是我的形式是:
<form action="http://ww7.aitsafe.com/cf/add.cfm" method="post">
<input type="hidden" name="userid" value="96309001">
<input type="hidden" name="nocart">
<input type="hidden" name="producturl" value="http://www.fruitfulfarm.net/cart_2.html">
<input type="hidden" name="product" value="Test Product">
<input type="hidden" name="price" value="49.99">
<input type="hidden" name="return"
value="www.fruitfulfarm.net/cart_2.html">
<input class="rounded" type="submit" name="submit" value="Add To Cart"
onclick="alert('Order has been added to your cart\n\nThis page will refresh');"
onkeypress="alert('Order has been added to your cart\n\nThis page will refresh');">
</form>
您是否使用jQuery UI對於對話框? – Ohgodwhy
如何使用表單標籤的onsubmit? – jtheman