我想在joomla中創建一個模塊,它使用一個jquery插件。我必須在單擊模塊中的某個元素時執行ajax操作。目前我正在指定php文件的完整路徑。但我知道這是一種錯誤的方法。在joomla模塊中放置jquery插件
在jQuery插件的代碼是這樣的。(請注意這裏的jQuery插件文件中指定的路徑第二行)
$.get(
"/subdirectory/MyBlog/modules/mod_calendar/getCalendar.php", {
month: $("#selectedMonth").val(),
year: $("#selectedYear").val(),
flag: '-1'
}, function(data){
$("#monthlyCalendar").html(data);
$("#monthlyCalendar").show();
}
);
什麼是指定一個jQuery插件路徑的正確方法文件。 另外我需要知道在哪裏把我的jquery插件文件在模塊中。