为什么这对我根本不起作用?
<script type="text/javascript" src="Javascript/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="Javascript/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(function() {
$('.selector').draggable({ axis: 'x' }); });
</script>
<body>
<div class="selector">
<p>Drag me around</p>
</div>
我只是从 jQuery 网站上的可拖动示例页面复制和粘贴,它只是不起作用:(
谁能告诉我为什么?