我正在使用 Joomla 2.5 和 JA K2 过滤器和搜索组件。我正在尝试修改模块。当我选择一个类别时,它应该显示另一个名为custom.html
.
<script type="text/javascript">
jQuery(document).ready(function() {
//disable the dynamic select list
jQuery('#extraList').attr('disabled', 'disabled');
//hide the dynamic select list
jQuery('#extraList').hide();
WireEvents();
});
function WireEvents() {
jQuery('#category_id').change(function() {
var value = jQuery('#category_id').val();
if (value > 0) {
//show the dynamic list
jQuery('#extraList').removeAttr('disabled');
jQuery('#extraList').show();
jQuery.get("<?php dirname(__FILE__) . '/' . 'custom.html'; ?>",
function(data) {
jQuery('#outPutDiv').html(data);
}
);
} else {
//disable the dynamic list
jQuery('#extraList').attr('disabled', 'disabled');
//hide the dynamic list
jQuery('#extraList').hide();
}
});
}
</script>
问题是,它不是返回custom.html
而是返回主页?我该如何解决?这是一些截图: