摘要:jquery ui draggable 基本範例
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>test</title>
<script type="text/javascript" src="js/jquery-1.2.6.pack.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/ui.core.js"></script>
<script type="text/javascript" src="js/ui.draggable.js"></script>
<script type="text/javascript" src="js/dg0001.js"></script>
<script>
$(document).ready(function(){
$(".block").draggable();
$("#myimg").draggable();
});
</script>
</head>
<body>
<div id="myimg" style="background-color:red;width:100px;height:100px;" > </div>
</body>
</html>