我有一個jquery ajax調用,我需要得到的結果爲qtip。 我的Ajax調用(到一把umbraco基地)jQuery的Ajax和qtip動態內容
jQuery("div.videoCardBack").mouseover(function (e) {
var getFormUrl = "/base/Popup/GetSessionPopup/" + this.id;
$.ajax({ url: getFormUrl, success: function (data) {
var result = eval("(" + data + ")");
$("#test").html("<div class=\"" + result[0].SessionVideoImageUrl + "\" style=\"width:125px;height:83px;background:url(\'xxxx.png\');margin:8px;\"> </div>" + result[0].SessionTitle + ' ' + result[0].SessionCode + ' ' + result[0].SessionDateTime + result[0].SessionAbstract);
var o = { left: e.pageX - 180, top: e.pageY - 80 };
$("#test").show(2000).offset(o);
}
});
});
The qtip
$('#verttabpanel a[rel]').each(function()
{
$(this).qtip(
{
content: {
text: '<center><img class="throbber" src="/images/animatednuts40.gif" alt="Loading..." /></center>',
url: $(this).attr('rel'),
title: {
text: 'TechReadyTV2 - ' + $(this).attr('alt'),
}
},
position: {
corner: {
target: 'bottomMiddle',
tooltip: 'topMiddle'
},
adjust: {
screen: true
}
},
show: {
delay: 900,
when: 'mouseover',
solo: true
},
hide: 'mouseout',
style: {
tip: true,
border: {
width: 0,
radius: 4
},
name: 'dark',
width: 570
}
})
});
});
請解釋升技有關上下文 –
我回到所謂的「會話」的對象 - 它持有約的時間,地點數據,和像我們的Web應用程序「sessionvideourl」視頻詳細信息。這是通過jquery ajax調用一個類似於asp.net pagemethod的umbraco基本頁面獲得的。 – nerdperson