Jquery在锚标记中确认函数

时间:2013-08-06 11:04:42

标签: javascript jquery

通常,当点击锚标记时,它会重定向到“href”属性中给出的某个网址。这里是否有任何可能的确认。当我们点击锚标签时,它会显示确认“你确定要继续”,如果我们点击“是”它会重定向到“href”里面给出的那个网址。如果我们点击“否”,它将保留在同一页面中。请分享您的想法。

7 个答案:

答案 0 :(得分:27)

试试这个

<a href="http://www.google.com" onclick="return confirm('Are you sure?')" >click here</a>

答案 1 :(得分:5)

您可以执行以下操作:

$('a').click(function(){
    return confirm('Are you sure want to continue?');
});

因此,如果用户点击取消,则返回false,该链接不会将您发送到任何地方。

答案 2 :(得分:2)

$('a').click(function(){
    return confirm('do you want to proceed')
})

答案 3 :(得分:2)

您可以使用以下html链接和jquery代码来完成此操作。不要忘记包含来自http://jquery.com的Jquery库。

<a href="go.html?id=22" class="confirm">Go>></a>

<!-- Include jQuery - see http://jquery.com -->
<script type="text/javascript">
    $('.confirm').on('click', function () {
        return confirm('Are you sure want to continue?');
    });
</script>

答案 4 :(得分:1)

尝试

<a href="www.anysite.com" onclick="return confirm('Are you sure?')">Any site</a>

答案 5 :(得分:1)

$('a').click(function(){return confirm('sure?')})

答案 6 :(得分:1)

如果你想要一个时尚的盒子,jQuery有一个Dialog Widget。 这是小部件API的链接: Dialog Widget - Open content in an interactive overlay.

我会将它作为我的确认()的一部分。