我有一個問題後,這是我的代碼:的Javascript留在網頁上點擊一個鏈接
<a href="Webshop.php" class="Button" onclick="myFunction()">Webshop</a>
<script>
function myFunction() {
var r = confirm("If you leave this page your purchase will be gone!");
if (r == true) {
window.location = "http://www.titansafes.sgr15.g-o.be/Webshop.php";
} else {
return
}
}
</script>
如果您按一下按鈕,我得到警告,如果他們點擊確定,他們直接回網上商店,如果他們點擊取消,他們需要留在頁面上。但我怎麼能做到最好? 我試過Window.location(不工作),返回不起作用,這對我來說很重要。
嘗試'返回false'。 – Vinay
然後閱讀此:http://stackoverflow.com/questions/1357118/event-preventdefault-vs-return-false – Vinay