<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>EasyUI拖動效果</title> <!-- 1 先引入jquery的庫 --> <script type="text/javascript" src="../js/jquery.min.js"></script> <!-- 2 在引入EasyUI的庫 --> <script type="text/javascript" src="../js/jquery.easyui.min.js"></script> <!-- 3 在引入EasyUI 的主樣式文件 --> <link rel="" type="text/css" href="../js/themes/default/easyui.css"></link> <!-- 4 在引入EasyUI 的主樣式文件 --> <link rel="stylesheet" type="text/css" href="../js/themes/icon.css"></link> </head> <style type="text/css"> div{ width:300px; height:200px; background-color:red; } </style> <body> <div class="easyui-draggable" >個人第一個div</div> <div class="easyui-draggable" >個人第一個div</div> <div class="easyui-draggable" >個人第一個div</div> <div class="easyui-draggable" >個人第一個div</div> <div class="easyui-draggable" >個人第一個div</div> </body> </html>