Hi,把它与我的 as子工作混为一谈。
Ive read the order you reg the jquery files matters, so ive put the core file at the top ? I really dont understand what im getting wrong here :
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<asp:PlaceHolder runat="server" ID="ph">
<script src="development-bundle/ui/jquery.ui.core.js" type="text/javascript"> </script>
<script src="development-bundle/jquery-1.7.2.js" type="text/javascript"></script>
<script src="development-bundle/ui/jquery.ui.draggable.js" type="text/javascript"> </script>
<script type="text/javascript">
$(function () {
$("#draggable").draggable();
});
</script>
</asp:PlaceHolder>
<asp:Panel ID="pnl_deck_holder" runat="server">
</asp:Panel>
<div id="draggable" class="ui-widget-content">
drag me
</div>
</asp:Content>