gpt4 book ai didi

jquery - 如何在jquery中最近添加的标签上绑定(bind)点击事件

转载 作者:行者123 更新时间:2023-12-01 07:36:53 26 4
gpt4 key购买 nike

我在一个页面上有 6 个指向 mp3 的链接。

我安装的插件用 swf 替换这些链接并内联播放该 mp3。

遇到的问题是可以激活所有 6 个链接并同时播放所有音频。我通过捕捉 <a> 解决了这个问题(尽管我感觉自己是一个笨拙的新手)。标记,然后将其替换为嵌入标记,然后在单击另一个标记时将其放回去。

但是,这是我现在的问题:<a>我放回的标签丢失了它的 onClick 事件(我认为这就是正在发生的事情),因此,如果第二次单击,则无法像第一次那样切换。

$(".storyplayer a").bind("click", function() {

// replace the <a> tag from the previous media player installation
if (previousplayerlocation != null) {$("#" + previousplayerlocation + " .storyplayer").html(graboldcode);}

// now remember this installation's <a> tag before it's replaced
graboldcode = $(this).parent().html();
// remember where I grabbed this <a> tag from
previousplayerlocation = $(this).parents("div.storylisting").attr("id");

// replaces the <a> tag with the media player.
$(this).media({width: 190,height: 30});
return false;
});

是一种将点击事件重新分配给 if 的方法声明?

最佳答案

关于jquery - 如何在jquery中最近添加的<a>标签上绑定(bind)点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/325200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com