可调整大小的 jQuery UI Demo 提供了一个页面:http: //jqueryui.com/demos/resizable/textarea.html
然后我按照它制作了一个类似的页面:
<!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文件之外,它们几乎相同。我错过了什么吗?