Demo

討論

保持飢餓,保持愚笨 (Stay hungry, stay foolish)。 史蒂夫·賈伯斯

公告

本網站已取消討論區的討論方式,如果您有問題請至LINE群行動條碼圖片網址,或Facebook社團

有問題

  • jeff807725
  • jeff807725 的個人頭像 Topic Author
  • 訪客
  • 訪客
2008-08-16 20:39 #10899 來自 jeff807725
jeff807725 created the topic: 有問題
請問有沒有方法可以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);
請問誰可以幫幫我?

Please 登入 to join the conversation.

  • jeff807725
  • jeff807725 的個人頭像 Topic Author
  • 訪客
  • 訪客
2008-08-19 18:40 #10946 來自 jeff807725
jeff807725 replied the topic: 有問題
等了很了la,請幫幫忙

Please 登入 to join the conversation.

  • cjcjonny
  • cjcjonny 的個人頭像
  • 訪客
  • 訪客
2008-08-26 00:54 #11054 來自 cjcjonny
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
  • jeff807725 的個人頭像 Topic Author
  • 訪客
  • 訪客
2008-08-30 12:29 #11140 來自 jeff807725
jeff807725 replied the topic: 有問題
即是怎樣加?

Please 登入 to join the conversation.

  • cjcjonny
  • cjcjonny 的個人頭像
  • 訪客
  • 訪客
2008-08-30 15:03 #11144 來自 cjcjonny
cjcjonny replied the topic: 有問題

jeff807725 寫了道:: 即是怎樣加?

給你一個參考的網址 ,找一下 Joomla Mod PHP extensions
http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,1758/Itemid,35/

Please 登入 to join the conversation.

  • jeff807725
  • jeff807725 的個人頭像 Topic Author
  • 訪客
  • 訪客
2008-08-30 17:06 #11153 來自 jeff807725
jeff807725 replied the topic: 有問題
看不懂
我是想在新增文章那裡使用這個code
請教教我

Please 登入 to join the conversation.

  • cjcjonny
  • cjcjonny 的個人頭像
  • 訪客
  • 訪客
2008-08-31 17:38 #11160 來自 cjcjonny
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.