创建一个与Onlick的HTML按钮,作为一个链接?
我有一个按钮,可以将产品添加到购物篮中 - 我希望在点击按钮时将按钮通过onclick脚本添加到购物篮 - 然后通过href链接或类似方式重定向到页面。 这可能吗?
HTML:
<input type="button" id="pl157821buy" class="actionbutton" value="Köp" onclick="buy(this, 157821, null, 'pl157821qty',null, '/ajax/buy')">
不确定这是最佳实践,但您可以在致电buy()
后立即使用window.location.assign("/your/other/page")
buy()
。
你可以使用window.location
对象:
function buy(...){
//your current code
window.location.href = "http://page to be redirected to";
}
链接地址: http://www.djcxy.com/p/36599.html
上一篇: create an HTML button with Onlick that aslo works as a link?
下一篇: How can I place multiple html buttons that act as links on the same page?