我正在尝试使用Draggable jQuery方法的演示源代码,但不能拖动div。
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"></script>
<script>
$(function () {
$("#draggable").draggable();
});
</script>
</head>
<body>
<div id="draggable" class="ui-widget-content">
<p>Drag me around</p>
</div>
</body>
</html>
这是一个新创建的ASP.Net MVC3应用程序默认启动项目。谢谢!
答案 0 :(得分:7)
您需要包含jQuery UI。