1.导入相应的JS类库:
复制代码 代码如下:
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
复制代码 代码如下:
<div>
<p>Drag me around!</p>
</div>
复制代码 代码如下:
#draggable {
width:150px;
height:150px;
padding:0.5em;
border:1px solid;
}
复制代码 代码如下:
<script>
$(function() {
$('#draggable').draggable();
});
</script>
复制代码 代码如下:
<!-- import the necessary files -->
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script>
$(function() {
$('#draggable').draggable();
});
</script>
<style>
#draggable {
width:150px;
height:150px;
padding:0.5em;
border:1px solid;
}
</style>
<div>
<p>Drag me around!</p>
</div>
新闻热点
疑难解答
图片精选