Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/73.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
包括jqueryui_Jquery_Html_Css - Fatal编程技术网

包括jqueryui

包括jqueryui,jquery,html,css,Jquery,Html,Css,我正在尝试使用jQueryUI,但我不确定它为什么不起作用。这是我使用的include <script type="text/javascript" src="http://360eye.com/jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.js"></script> <script type="text/javascript" src="http://360eye.com/jquery-ui-1.10.4.

我正在尝试使用jQueryUI,但我不确定它为什么不起作用。这是我使用的include

<script type="text/javascript" src="http://360eye.com/jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.js"></script>

<script type="text/javascript" src="http://360eye.com/jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.min.js"></script>

<link rel="stylesheet" type="text/css" href="http://360eye.com/jquery-ui-1.10.4.custom/css/ui-lightness/jquery-ui-1.10.4.custom.css" />

<link rel="stylesheet" type="text/css" href="http://360eye.com/jquery-ui-1.10.4.custom/css/ui-lightness/jquery-ui-1.10.4.custom.min.css" />

  <script>
           $(function() {
    $( "#tabs" ).tabs();
  });
  </script>

$(函数(){
$(“#制表符”).tabs();
});
这里还有我用来制作标签的代码(我删除了占位符文本,所以不会太长)



我不知道该怎么说,但我想我的一个保险柜可能工作不正常。如何判断文件是否正确包含?我的代码还有什么问题?wordpress可能会干扰这一点吗?

它不起作用,因为jQuery UI使用了您未包含的jQuery库:

<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="http://360eye.com/jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.min.js"></script>


注意:必须包含在ui库之前

它不起作用,因为jQuery UI使用了您未包含的jQuery库:

<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="http://360eye.com/jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.min.js"></script>


注意:必须包含在ui库之前

您还需要包括jquery库:

 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>


您还需要包括jquery库:

 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>


您没有包括jquery文件…为什么同时包括未统一版本和缩小版本?您没有包括jquery文件…为什么同时包括未统一版本和缩小版本?