2011-05-18 109 views
1

jQuery的UI演示可調整大小的提供了一個頁面:http://jqueryui.com/demos/resizable/textarea.html幫助:jQuery UI可調整大小無法正常工作!

而且我也跟着,爲了使類似的頁面:

<!DOCTYPE html> 
<html lang="en"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
<title>jQuery UI Example Page</title> 
<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.13.custom.css" rel="stylesheet" /> 
<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script> 
<script type="text/javascript" src="js/jquery-ui-1.8.13.custom.min.js"></script> 
<style> 
.ui-resizable-se { 
bottom: 17px; 
} 
</style> 
<script> 
$(function() { 
$("#resizable").resizable({ 
handles: "se" 
}); 
}); 
</script> 
</head> 
<body> 
<div class="demo"> 
<textarea id="resizable" rows="5" cols="20"></textarea> 
</div> 
</body> 
</html> 

但在我沒有處理圖像(一個在底部右側)頁!我將我的代碼與示例進行了比較。實際上,除了頭文件「包含」js和css文件外,它們幾乎相同。我想念什麼?

回答

0

您必須包含jquery.ui.core.js(可能還有其他JS文件)。從管線

+0

但我想我下載了jQuery UI 1.8.13的所有組件,只需點擊頁面「http://jqueryui.com/download」中最右邊的'下載'按鈕即可。選擇所有組件。 – Robert 2011-05-18 14:23:44

+0

如果文件已下載,您是否檢查過Firebug(網絡面板)?你可能有錯誤的路徑...另外,你可以嘗試手動包括所有文件(非縮小和非捆綁),看看它是否有幫助。 – johndodo 2011-05-22 20:10:17

0

的 「的jquery-UI-1.8.13.custom.css」 文件中刪除該 「:(圖像/ GIF; BASE64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs =數據)背景圖像URL」 它會工作得很好:)

+0

它確實出現了,但位置看起來不正確:它應該位於上方的一個小空間。而在IE9中,它駐留在滾動條上:( – Robert 2011-05-18 14:19:38

+0

對不起,我沒有給你答案。什麼不會出現? – inadcod 2011-05-19 06:47:42

+0

謝謝,我會盡力的。 – Robert 2011-06-09 01:11:50

相關問題