我开发Facebook上的Chrome扩展(我的第四个问题左右......),它增加了“Like”按钮旁边的自定义按钮。 由于帖子被自动添加到新闻源不需要刷新页面,我必须每天添加新的职位时添加脚本。
我用DOMNodeInserted
事件。
问题是,当被称为事件我插入一个新元素(按钮)的网页,它使一个循环!
我的脚本:
$(document).bind('DOMNodeInserted', function(event) {
$(".like_link").after('<span class="dot"> · </span><button class="taheles_link stat_elem as_link" title="תגיד תכל´ס" type="submit" name="taheles" onclick="apply_taheles()" data-ft="{"tn":">","type":22}"><span class="taheles_default_message">תכל´ס</span><span class="taheles_saving_message">לא תכלס</span></button>');
$(".taheles_saving_message").hide();
});
你可以看到我刚才的问题在这里
我已经厌倦了问问题的,所以我会很感激任何答案/发表评论!