在Joomla中简单使用mootools方式是在你的模板文件中,加入一行:
<?php JHTML::_('behavior.mootools'); ?> 这样之后,你就引用mootools的相关资源了。
这是一个mootools ajax的例子:
<?php
JHTML::_('behavior.mootools');
global $Itemid;
?>
<script>
function showIt( resp )
{
alert( 'the response was' + resp );
}
function clicked()
{
var postStr = 'passed_val=foo';
var url = "http://my_joomla_site.com/index.php?option=com_whatever&view=someview&Itemid=<?php echo $Itemid; ?>&format=raw";
var theAjax = new Ajax(url, {
method: 'post',
postBody: postStr
});
theAjax.addEvent('onSuccess', function(resp) {
showIt( resp );
});
theAjax.request();
</script>
<input type="button" onclick="javascript:clicked();" value="Press me!" />
时间: 2024-10-25 07:54:03