有問題
- jeff807725
- Topic Author
- 訪客
2008-08-16 20:39 #10899
來自 jeff807725
jeff807725 created the topic: 有問題
請問有沒有方法可以joomla的文章內使用javascript?
因為我新增文章時輸入以下javascript碼但系統卻幫我換成請問誰可以幫幫我?
因為我新增文章時輸入以下javascript碼
<script type="text/javascript">
var cnt = document.getElementById("mediaspace");
var src = 'wmvplayer.xaml';
var cfg = {
file:'main.wmv',
image:'preview.jpg',
height:'260',
width:'420'
};
var ply = new jeroenwijering.Player(cnt,src,cfg);
</script>
var cnt = document.getElementById("mediaspace"); var src = 'wmvplayer.xaml'; var cfg = { file:'main.wmv', image:'preview.jpg', height:'260', width:'420' }; var ply = new jeroenwijering.Player(cnt,src,cfg);
Please 登入 to join the conversation.
- jeff807725
- Topic Author
- 訪客
- cjcjonny
- 訪客
2008-08-26 00:54 #11054
來自 cjcjonny
你無法直接將JavaScript 直接寫在程式裡面,必需使用 Joomla Framework的方式來新增JavaScript
$document =& JFactory::getDocument();
$document->addScriptDeclaration($js);
其中 $js 即是你的JavaScript Code
cjcjonny replied the topic: 有問題
jeff807725 寫了道:: 請問有沒有方法可以joomla的文章內使用javascript?
因為我新增文章時輸入以下javascript碼但系統卻幫我換成<script type="text/javascript"> var cnt = document.getElementById("mediaspace"); var src = 'wmvplayer.xaml'; var cfg = { file:'main.wmv', image:'preview.jpg', height:'260', width:'420' }; var ply = new jeroenwijering.Player(cnt,src,cfg); </script>請問誰可以幫幫我?var cnt = document.getElementById("mediaspace"); var src = 'wmvplayer.xaml'; var cfg = { file:'main.wmv', image:'preview.jpg', height:'260', width:'420' }; var ply = new jeroenwijering.Player(cnt,src,cfg);
你無法直接將JavaScript 直接寫在程式裡面,必需使用 Joomla Framework的方式來新增JavaScript
$document =& JFactory::getDocument();
$document->addScriptDeclaration($js);
其中 $js 即是你的JavaScript Code
Please 登入 to join the conversation.
- jeff807725
- Topic Author
- 訪客
- cjcjonny
- 訪客
2008-08-30 15:03 #11144
來自 cjcjonny
http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,1758/Itemid,35/
cjcjonny replied the topic: 有問題
給你一個參考的網址 ,找一下 Joomla Mod PHP extensionsjeff807725 寫了道:: 即是怎樣加?
http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,1758/Itemid,35/
Please 登入 to join the conversation.
- jeff807725
- Topic Author
- 訪客
- cjcjonny
- 訪客
2008-08-31 17:38 #11160
來自 cjcjonny
請先下載 http://www.fijiwebdesign.com/products/joomla-php-module.html 頁面中 Joomla PHP Module (Mod PHP for Joomla 1.5)
並於後台安裝後 新增一文章,其內容
請參考 http://www.fijiwebdesign.com/products/joomla-php-module.html 頁面中 Documentation and Examples: (Example 2: Flickr Photos) 的範例
你就應該會有概念了
cjcjonny replied the topic: 有問題
jeff807725 寫了道:: 看不懂
我是想在新增文章那裡使用這個code
請教教我
請先下載 http://www.fijiwebdesign.com/products/joomla-php-module.html 頁面中 Joomla PHP Module (Mod PHP for Joomla 1.5)
並於後台安裝後 新增一文章,其內容
請參考 http://www.fijiwebdesign.com/products/joomla-php-module.html 頁面中 Documentation and Examples: (Example 2: Flickr Photos) 的範例
你就應該會有概念了
Please 登入 to join the conversation.