2

我正在为我的应用程序中的个人资料开发 +Follow 功能。跟随功能只工作一次(在新页面加载时),但在脚本替换 DOM 元素后,它就不起作用了。

用户未关注配置文件时的 HTML 输出:

<div id="follow">
    <a>Follow profile</a>
</div>

HTML 输出当用户当前关注配置文件时:

<div id="unfollow">
    <a>Unfollow profile</a>
</div>

魔术发生在 jQuery 中。以下函数包装在一个$(document).ready()函数中:

function follow() {

    $("#follow a").on("click", function() {
        // $.getJSON fn here that follows profile and returns success T/F
        if ( success ) {
            $("#follow").remove();
            $("#follow-container").html('<div id="unfollow"><a>Unfollow profile</a></div>');
        }
    });

    $("#unfollow a").on("click", function() {
        // $.getJSON fn here that unfollows profile and returns success T/F
        if ( success ) {
            $("#unfollow").remove();
            $("#follow-container").html('<div id="follow"><a>Follow profile</a></div>');
        }
    });

}

假设用户点击“关注个人资料”。该脚本会删除#follow a链接并将其替换为#unfollow a链接。但是,#unfollow a单击时运行的 JS 脚本不会执行,因为该元素是在页面加载后添加到 DOM 中的。

为了解决这个问题,我尝试像这样刷新函数:

    if ( success ) {
        $("#follow").remove();
        $("#follow-container").html('<div id="unfollow"><a>Unfollow profile</a></div>');
        // reload function
        follow();
    }

这行不通。取消关注点击事件未注册。在这种情况下,我还能如何重新加载 DOM?

4

1 回答 1

7

使用事件委托 -

$("#follow-container").on("click","#follow a", function() {

$("#follow-container").on("click","#unfollow a", function() {

另外:你在这里有一个错字,$(#follow-container")这应该是$("#follow-container")

于 2013-05-20T12:55:21.047 回答