0

我有以下代码:

<a href="#" id="@item.Id" name="vote" ><img src="/Content/images/021.png" style="float:left" alt="" /></a>

它调用 ajax 调用。在第一次通话。如果返回为真,在第二次通话时,我想制作一个警告框,说您只能投票一次。

<script type="text/javascript">
    $(function () {
        $("div.slidera_button a").click(function (e) {
            var item = $(this);
            e.preventDefault();
            $.get('@Url.Action("VoteAjax","Home")', { id: item.attr("id") }, function (response) {
                if (response.vote == "false") {
                    alert("foo.");
                } else {
                    //something
                }
            });
        })
    });
</script>

这有效,如果我单击按钮然后刷新页面但它不起作用,如果我尝试单击两次。

我希望用户能够点击多次,并且只有在第一次点击之后,他们才会弹出一个窗口。

为什么这不起作用?

我该如何解决?

编辑:在 FF 中工作 .. 在 IE 中不起作用。

4

2 回答 2

0

使用这个脚本

<script type="text/javascript">
    $(function () {
        $("div.slidera_button a").live('click',function (e) {
            var item = $(this);
            e.preventDefault();
            $.get('@Url.Action("VoteAjax","Home")', { id: item.attr("id") }, function (response) {
                if (response.vote == "false") {
                    alert("foo.");
                } else {
                    //something
                }
            });
        })
    });
</script>

或者 JQuery Delegate 方法来触发这个点击

于 2012-06-15T06:50:37.570 回答
0

像这样的东西怎么样:

<style type="text/css">
a.disabled {
    opacity: 0.5;
    /* whatever other styles you want */
}   
</style>

<script type="text/javascript">
    $(function () {
        $.ajaxSetup({ cache: false });
        $("div.slidera_button a").click(function (e) {
            var item = $(this);
            if (item.hasClass("disabled")) {
                // alert when they vote
                // you'll need to handle some way to add this 
                // server side to account for page reload, yes?
                alert('You may only vote once');
            }
            $.get('@Url.Action("VoteAjax", "Home")'
                , { id: item.attr("id") }
                , function (response) {
                    // if this returns successfully, you voted.
                    item.addClass('disabled');
                }
            });
            return false;
        })
    });
</script>
于 2012-06-15T06:52:42.633 回答