2011-07-26 94 views
0

我正在嘗試安裝彈性插件。這是我第一次安裝任何插件。我從網站上傳文件jquery.elastic.source.js和jquery.js。這裏是我的代碼:彈性插件不工作

<script type="text/javascript" src="js/jquery.elastic.source.js"></script> 
<script type="text/javascript" src="js/jquery.js"></script> 
<script src="http://google-cdn.joinpgn.com/js/jquery/jquery-1.5.2.min.js"></script> 


<textarea id="description"> 
This textarea is going to grow when you fill it with text. Just type a few more words in it and you will see. 
</textarea> 

<script> 
jQuery('#description').elastic(); 

</script> 

<style> 
body { background: #0D1114; } 
.project-name a { padding: 0; color: #3cf; text-transform: uppercase; font: bold 13px/30px 'Arial', 'sans-serif'; } 

textarea { padding: 10px; width: 300px; font-family: Arial, 'sans-serif' } 
</style> 

這是行不通的。難道我做錯了什麼?

+1

什麼是'JS/jquery.js'?如果這只是jQuery源代碼,那麼爲什麼還要有'jquery-1.5.2.min.js'源代碼?你只需要一個或另一個。 '.min.js'版本是壓縮的,但與非最小源代碼相同。最後,你的彈性源應該在加載jQuery源代碼後出現。 – Hristo

+0

謝謝你現在在工作。 – Gurnor

+0

@Gurnor ...不客氣。 – Hristo

回答

0

在包含jquery.js之後,您需要包含jquery.elastic.source.js

腳本標記應該是這樣的:

<script type="text/javascript" src="js/jquery.js"></script> 
<script type="text/javascript" src="js/jquery.elastic.source.js"></script> 

<script type="text/javascript" src="js/jquery.elastic.source.js"></script> 
<script src="http://google-cdn.joinpgn.com/js/jquery/jquery-1.5.2.min.js"></script>