我有一些代码可以插入到我的 Joomla 3.0 页面中,可以正确调用 java。我正在尝试将 JFactory::getDocument 切换为我的 java 函数,因为它是 Joomla 原生的。
这是工作代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery demo</title>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
<script src="media/jui/js/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("a").click(function(event){
alert("As you can see, the link no longer took you to jquery.com");
event.preventDefault();
});
});
</script>
</body>
</html>
这是我尝试过但不起作用的方法
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery demo</title>
</head>
<body>
<?php
JFactory::getDocument()->addScriptDeclaration('
(function($) {
$(document).ready(function(){
$("a").click(function(event){
alert("As you can see, the link no longer took you to jquery.com");
event.preventDefault();
});
});
}) (jQuery);
');?>
</body>
</html>
对此有任何帮助吗?