JQuery ui 无法使用 mfc htmldialog?

JQuery ui in not working with mfc htmldialog?

此代码与 asp.net c# 完美配合。我正在使用此代码但不使用 mfc htmldialog。错误是对象不支持 属性 或方法选项卡。

  <HEAD>
        <title></title>
        <link href="jquery-ui-1.8.8/themes/base/jquery.ui.all.css" rel="stylesheet" type="text/css" />
        <script src="jquery-ui-1.8.8/jquery-1.4.4.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
        <script src="jquery-ui-1.8.8/ui/jquery.ui.widget.js" type="text/javascript"></script>
        <script src="jquery-ui-1.8.8/ui/jquery.ui.core.js" type="text/javascript"></script>
        <script src="jquery-ui-1.8.8/ui/jquery.ui.tabs.js" type="text/javascript"></script>
        <link href="jquery-ui-1.8.8/demos/demos.css" rel="stylesheet" type="text/css" />

        <script type="text/javascript">
            (function ($) {
                // rely on $ within safety of "bodyguard" function
                $(document).ready(function () {
                    $("#tabs").tabs();
                });

            })(jQuery);


        </script>

    </HEAD>

帮忙?

首先,请删除警报前的“$”。如果仍然不起作用,请尝试使用 <script src="http://code.jquery.com/jquery-1.10.2.js"></script>。如果成功,则说明您无法导入库。