我创建了新的joomla模块 我希望当客户端点击按钮时,在easyblog组件中使用ajax调用此模块 对于这项工作我使用com_ajax但这种方式不帮助我 请检查我的代码 我的模块名称是mfk_following
$(document).ready(function(){
SitePath= $(location).attr('hostname')+"/\analyze";
$('body').on('click','span', function() {
$.ajax({
url: SitePath+"index.php?option=com_ajax&module=mfk_following&format=raw&authorid=" + 1,
type: 'get',
success: function(response){
alert(response);
}
});
alert('check clicked');
});
});
<div class="btn_follower" tabindex="<?php echo $user->userID; ?>" >
<a class="pluginButtonContainer" title="<?php echo $user->userID; ?>" href="#" >
<span class="pluginButtonLabel" title="<?php echo $user->userID; ?>">
<?php echo JText::_('Follower'); ?>
</span>
</a>
</div>
// in view.html.php
<?php
defined( '_JEXEC' ) or die;
$doc = JFactory::getDocument();
$authorid = JRequest::getVar('authorid', 'authorID', '', 'int');
echo $authorid;
require JModuleHelper::getLayoutPath('mod_mfk_following','default');
?>
我不确定这个网址是否属实,请帮帮我