不是一個JS男人 - 所以任何人都可以解釋爲什麼這不起作用?我想從簡單的AJAX腳本中調用一個腳本中的預定義函數 - 我只是希望它通過AJAX將div內容帶入頁面時調用qtip功能。調用jquery函數和傳遞變量
感謝, ^ h
腳本1 - AJAX裝載機
if(myHttpRequest.readyState==4)
data.innerHTML = myHttpRequest.responseText;
qtip_me('.div_to_act_on');
}
腳本2 - 主jQuery腳本
$(document).ready(function() {
function qtip_me(a) {
$(a).each(function() {
$(this).qtip({
content: {'showme'},
position: {corner: {tooltip: 'bottomLeft', target: 'topRight'}},
style: {
width: 300,
padding: 5,
background: '#A2D959',
color: 'black',
textAlign: 'center',
border: {
width: 7,
radius: 5,
color: '#A2D959'
},
tip: 'bottomLeft',
name: 'dark' // Inherit the rest of the attributes from the preset dark style
}
});
});
};
});
擺脫$(document).ready(function(){'和相應的結束'});''。你只是定義一個函數,你不需要它。 – 2009-11-29 13:47:11
儘管存在爭論,乾杯傢伙 - 「範圍」絕對是它) – MrFidge 2009-12-01 11:17:09