gpt4 book ai didi

jQuery qTip 回调不起作用

转载 作者:行者123 更新时间:2023-12-01 01:39:21 25 4
gpt4 key购买 nike

我在表中的项目上调用了 qTip..

$('#orders_table a[rel]').each(function (){
$(this).click(function(){
return false;
});
$(this).qtip({
content: {
// Set the text to an image HTML string with the correct src URL to the loading image you want to use
text: 'Loading...',
url: $(this).attr('rel'),
// Use the rel attribute of each element for the url to load
title: {
text: 'Order Number ' + $(this).text(),
// Give the tooltip a title using each elements text
button: 'Close' // Show a close link in the title
}
},
position: {
corner: {
target: 'bottomMiddle',
// Position the tooltip above the link
tooltip: 'topMiddle'
},
adjust: {
screen: true // Keep the tooltip on-screen at all times
}
},
show: {
when: 'click',
solo: true // Only show one tooltip at a time
},
hide: 'unfocus',
style: {
tip: true,
// Apply a speech bubble tip to the tooltip at the designated tooltip corner
border: {
width: 0,
radius: 4
},
name: 'light',
// Use the default light style
width: 570 // Set the tooltip width
}
})
});

然后我有以下回调函数:

$('#orders_table a[rel]').each(function (){

$(this).qtip({
api: {
onContentLoad:function() {
$('#select').change(function(){

alert('test');
});
}
}
})
});

qTip 正在加载动态内容。该动态内容有一个 ID 为“select”的选择框。

由于某种原因,在 qTip 加载动态内容后,它似乎没有调用该函数。

有什么想法吗?我尝试过onRender和onContentUpdate,似乎不太合适。

谢谢!

最佳答案

其实需要不同的具体手段不同控件的ID。所以尝试不同的ID 意味着传递一些参数并生成 Id创建控件时有所不同动态地。

它可能会解决你的问题。

关于jQuery qTip 回调不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3921123/

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