0
我在更新面板中有3個按鈕。他們每個人都使用qTip插件。在更新面板之外,它工作正常,但在點擊後它不會消失。更新面板中的qTip jQuery插件無法正常工作
這裏是我的代碼
function pageLoad() {
$('.subindex a[title]').qtip({
position: {
corner: {
target: 'topMiddle',
tooltip: 'bottomMiddle'
}
},
style: {
name: 'cream',
padding: '7px 13px',
color: '#350608',
width: {
max: 210,
min: 0
},
tip: true
}
});
}
和更新面板
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<a title="Title">
<asp:ImageButton ID="ImgOne" OnCommand="ImgOne_Click" runat="server" /></a>
<a title="Title2">
<asp:ImageButton ID="ImgTwo" OnCommand="ImgTwo_Click" runat="server" /></a>
<a title="Title2">
<asp:ImageButton ID="ImgThree" OnCommand="ImgThree_Click" runat="server" /></a>
</ContentTemplate>
</asp:UpdatePanel>
任何想法如何解決呢?