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文件外,它們幾乎相同。我想念什麼?
但我想我下載了jQuery UI 1.8.13的所有組件,只需點擊頁面「http://jqueryui.com/download」中最右邊的'下載'按鈕即可。選擇所有組件。 – Robert 2011-05-18 14:23:44
如果文件已下載,您是否檢查過Firebug(網絡面板)?你可能有錯誤的路徑...另外,你可以嘗試手動包括所有文件(非縮小和非捆綁),看看它是否有幫助。 – johndodo 2011-05-22 20:10:17