2010-08-28 78 views
1
<?php 
//require 'includes/db.inc.php'; 
require 'includes/configs.inc.php'; 
?> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
    <head> 
     <title><?php $site_name ?></title> 
     <meta http-equiv="content-type" content="text/html; charset=utf-8"> 
     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"> 
     <link rel="stylesheet" type="text/css" href="/css/style.css"> 
     <script type="text/javascript" src="/js/jquery.imageTickBox.js"></script> 
     <script type="text/javascript"> 
     jQuery(document).ready(function(){ 
      jQuery("input:[type=checkbox]").imageTickBox({ 
      tickedImage: "/images/checked.png", 
      unTickedImage: "/images/unchecked.png", 
      imageClass: "tickbox" 
      }); 
      }); 
      </script> 
    </head> 
    <body> 
     <div id="mirror" class="center"> 
     <!--some code deleted--> 
     <input type="checkbox" id="Music" name="hobbies[]" value="Music"> 
     <!--some code deleted--> 
     </div> 
    </body> 
</html> 

上面的代碼有任何問題???? name index.php並把它放在根目錄。複選框圖片替換,什麼都沒有發生

,但不行,我看到了jQuery插件複選框在導

http://blog.leenix.co.uk/2009/10/jquery-plugin-imagetickbox-change-any.html

+0

什麼爲u得到的錯誤... u能提供一個工作示例,並檢查所有腳本/圖像源路徑/ css ... – 2010-08-28 19:15:57

+0

沒有錯誤,即時試圖包括一些jquery插件取代複選框與圖像,上面的腳本並沒有改變我的複選框圖像 – user259752 2010-08-28 19:20:17

+0

不是問題,但你應該從這個選擇'''刪除':'jQuery ( 「輸入:[式=複選框]」)'。 – user113716 2010-08-28 19:29:51

回答

1

始終關閉腳本標記,即使使用外部資源。

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> 
+0

謝謝= =我加然後腳本工作 – user259752 2010-08-28 19:27:51

1

您需要關閉的jQuery腳本標籤:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> 
相關問題