Javaを正しく呼び出すJoomla3.0ページに挿入できるコードがいくつかあります。Joomlaにネイティブであるため、Java関数にJFactory::getDocumentを使用するように切り替えようとしています。
これが作業コードです
<!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>
この可能性について何か支援はありますか?