在警告框中点击确定按钮后,如何避免页面加载?

How can i avoid the pageload after clicking the ok button in alert box?

本文关键字:何避免 加载 按钮 警告      更新时间:2023-09-26

我使用下面的简单代码,按下ok按钮后,它允许页面加载。

JavaScript:alert('You dont have Access for ' + this.title)

如何避免在警报框中点击ok按钮后页面加载

您可能想要这样的内容:

<a href='somepage.htm' onclick='return showAlert("Some Book Title");'>Title</a>
<script>
    function showAlert(title){
        alert('You dont have Access to: ' + title);
        return false;
    }
</script>

点击链接将不会加载下一页。http://jsfiddle.net/CNxL8/