2012-11-09 90 views
0

這裏的想法是,每當用戶點擊圖像時,他或她可以在上面的框中查看關於該人的信息。它之前有效,然後突然停止。這裏是我正在談論的頁面和我的代碼的鏈接。點擊功能的Javascript不起作用在一個頁面上

http://www.team3550.org/team/

代碼:

<script type="text/javascript"> 
     jQuery(document).ready(function($){ 
      $('#team_pics img, #team_pics2 img').click(function(){ 
       $('#team_description').html('<img src="' + $(this).attr('src') + '" />' + $(this).next().html()); 
      }); 
     }); 
    </script> 
     <div id="team_description">  
      <h1>Click on a picture below to learn more about a team member</h1> 
     </div> 
     <div id="team_container"> 
      <div id="team_pics"> 
       <img src="<? bloginfo('stylesheet_directory'); ?>/images/pixel_chase.png" width="100px" height="100px" style="padding: 30px;"/> 
       <div class="caption"><p class="caption_paragraph"><span class="caption_header"><b>Chase Schweitzer</b></span><br>-Third year in FTC<br>-Designer, builder, webmaster<br>-Interests: programming (HTML, CSS, BASIC, Javascript, etc.), web design, music, writing<br>-Plays the guitar and violin</p></div> 
       <img src="<? bloginfo('stylesheet_directory'); ?>/images/pixel_annie.png" width="100px" height="100px" style="padding: 30px;"/> 
       <div class="caption"><p class="caption_paragraph"><span class="caption_header"><b>Annie Howard</b></span><br>-Second year in FTC<br>-Designer, builder, writer<br>-Interests: music, writing, history, anthropology<br>-Plays the ukelele, sings</p></div> 
       <img src="<? bloginfo('stylesheet_directory'); ?>/images/pixel_tanvi.png" width="100px"height="100px" style="padding: 30px;"/> 
       <div class="caption"><p class="caption_paragraph"><span class="caption_header"><b>Tanvi Yenna</b></span><br>-Second year in FTC<br>-Designer, builder, engineering notebook organizer<br>-Interests: designing, music, writing, and acting<br>-Plays the piano, guitar and ukelele; sings</p></div> 
       <img src="<? bloginfo('stylesheet_directory'); ?>/images/pixel_jordan.png" width="100px" height="100px" style="padding: 30px;"/>     
       <div class="caption"><p class="caption_paragraph"><span class="caption_header"><b>Jordan Burklund</b></span><br>-Fourth year in FTC, two years in FLL<br>-Designer, builder, programmer<br>-Interests: robotics/mechatronics engineering, aviation, and music<br>-CLAD certified</p></div>    
      </div> 
      <div id="team_pics2">     
       <img src="<? bloginfo('stylesheet_directory'); ?>/images/pixel_saketh.png" width="100px" height="100px" style="padding: 0px 30px;"/>   
       <div class="caption"><p class="caption_paragraph"><span class="caption_header"><b>Saketh Undurty</b></span><br>-Fourth year in FTC, two years in FLL<br>-Designer, builder<br>-Interests: 3D modeling/design, architecture, and music<br>-Plays trumpet in concert band and jazz orchestra</p></div> 
       <img src="<? bloginfo('stylesheet_directory'); ?>/images/pixel_daniel.png" width="100px" height="100px" style="padding: 0px 30px;"/> 
       <div class="caption"><p class="caption_paragraph"><span class="caption_header"><b>Daniel Miller</b></span><br>-Third year in FTC<br>-Designer, builder, promotions<br>-Interests: architecture, graphic design, music<br>-Viola player, mime, and thespian</p></div> 
       <img src="<? bloginfo('stylesheet_directory'); ?>/images/pixel_sidd.png" width="100px" height="100px" style="padding: 0px 30px;"/> 
       <div class="caption"><p class="caption_paragraph"><span class="caption_header"><b>Sidd Somayajula</b></span><br>-Third year in FTC<br>-Designer, builder, webmaster<br>-Interests: medicine, math, web design, programming (HTML, CSS, BASIC, Javascript, etc.)<br>-Plays tennis</p></div> 
      </div> 
     </div> 
+2

您的網站似乎還有其他一些問題。檢查控制檯。另外,你不應該使用多個** $(document).ready函數**(我查看了你的網站的源代碼)。 – pmandell

+0

@pmandell爲什麼不出於好奇呢?它是否會傷害任何東西,還是代碼味道? – Yatrix

回答

1

你看怎麼行202拋出一個TypeError,是否正確?

var top = $('#blog_right').offset().top - parseFloat($('#blog_right').css('margin-top').replace(/auto/,0)); 

遺漏的類型錯誤:無法讀取的不確定

財產「頂」我看不出有任何blog_right元素作爲此頁面上的ID。

0

jQuery(document).ready(function($){調用中在代碼中放置斷點甚至不會停止。