2011-03-13 35 views
0

常見問題頁面加載和問題答案顯示一秒鐘,然後隱藏。 頁面應該加載而不顯示答案。它應該只加載顯示問題。 我使用的腳本是這樣的:Jquery Expander插件常見問題頁面 - 請

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"> 
</script> 
<script type="text/javascript" 
src="http://plugins.learningjquery.com/expander/jquery.expander.js"> 
</script> 
<script type="text/javascript"> 
    $(function() {   
$('div.readmore').expander({ 
      slicePoint: 119, 
      expandText: 'Read More', 
expandSpeed: 'slow', 
      userCollapseText: 'Close' 
     }); 
    }); 
</script> 

我可以插入到不能讓這再發生? 非常感謝。

在插件演示頁面

回答

0

我看到他們使用

$(document).ready(function() { ... }

,而你沒有

+0

的OP使用的'$短版(函數(){...})'( http://api.jquery.com/ready/) – 2011-03-13 18:44:02

+0

是的:)你是對的 – 2011-03-13 18:50:52