实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
AخA
 
1
<!doctype html>
2
<html lang="en">
3
<head>
4
  <meta charset="utf-8">
5
  <title>可放置小部件(Droppable Widget)演示</title>
6
  <link rel="stylesheet" href="//apps.bdimg.com/libs/jqueryui/1.10.4/css/jquery-ui.min.css">
7
  <style>
8
  #draggable {
9
    width: 100px;
10
    height: 100px;
11
    background: #ccc;
12
  }
13
  #droppable {
14
    position: absolute;
15
    left: 250px;
16
    top: 0;
17
    width: 125px;
18
    height: 125px;
19
    background: #999;
20
    color: #fff;
21
    padding: 10px;
22
  }