下面是一个使用jQuery UI来实现拖拽元素并改变其大小的示例代码。请确保您已经在项目中引入了jQuery和jQuery UI库。
HTML 部分:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Resizable Demo</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
<style>
#resizable { width: 150px; height: 150px; padding: 0.5em; }
</style>
</head>
<body>
<div id="resizable" class="ui-widget-content">
<p>Resize me!</p>
</div>
<script>
$( function() {
$( "#resizable" ).resizable();
} );
</script>
</body>
</html>
解释:
1. 在HTML头部,我们引入了jQuery和jQuery UI的CSS和JS文件。
2. 在`