gpt4 book ai didi

javascript - JQTOUCH,绑定(bind)到通过 AJAX 拉入的链接,进行另一个 AJAX 调用?可能的?

转载 作者:行者123 更新时间:2023-11-30 18:54:33 24 4
gpt4 key购买 nike

我正在使用演示中提供的 AJAX 示例使用 JQTOUCH:

$('#customers').bind('pageAnimationEnd', function(e, info){
if (!$(this).data('loaded')) { // Make sure the data hasn't already been loaded (we'll set 'loaded' to true a couple lines further down)
$('.loadingscreen').css({'display':'block'});
$(this).append($('<div> </div>'). // Append a placeholder in case the remote HTML takes its sweet time making it back
load('/mobile/ajax/customers/ .info', function() { // Overwrite the "Loading" placeholder text with the remote HTML
$(this).parent().data('loaded', true); // Set the 'loaded' var to true so we know not to re-load the HTML next time the #callback div animation ends
$('.loadingscreen').css({'display':'none'});
}));
}
});

然后这会返回一个很好的 UL,它输出很好..

<ul class="edgetoedge">
<li class="viewaction" id="715">
<span class="Title"><a href="/c-view/715/">Lorem Ipsum is simply dummy text of the...</a></span>
<div class="meta">
<span class="dateAdded"> 1d ago </span>
</div>
</li>
</ul>

这是我卡住的地方。那么当您单击上面的链接时,我如何才能加载包含在 class="Title"附近的 URL?

我希望它像第一个代码示例一样加载 JQTouch。

我尝试了以下两件事但没有成功:

$('.viewaction').bind('click', function() {
alert('wow');
});

$('.viewaction').live('pageAnimationEnd', function(e, info){

});

谢谢!

最佳答案

把这个放在你的第一个绑定(bind)函数之外的地方

$("span[class=Title]").delegate("a", "click", function(){
alert('LOLCAT');
});

关于javascript - JQTOUCH,绑定(bind)到通过 AJAX 拉入的链接,进行另一个 AJAX 调用?可能的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2605153/

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