我想使用来自:http: //jqueryui.com/spinner/#time的时间微调器小部件
我从站点复制代码并粘贴到记事本中并将扩展文件转换为“.html”。但是,当我尝试使用它时,它不起作用。为什么?
我想使用来自:http: //jqueryui.com/spinner/#time的时间微调器小部件
我从站点复制代码并粘贴到记事本中并将扩展文件转换为“.html”。但是,当我尝试使用它时,它不起作用。为什么?
您粘贴到 HTML 文件中的标记包含多个未明确指定服务器名称的 URL:
<script src="/resources/demos/external/jquery.mousewheel.js"></script>
<script src="/resources/demos/external/globalize.js"></script>
<script src="/resources/demos/external/globalize.culture.de-DE.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
这些将无法正确解析,因为标记来自您的本地机器,而不是由 jQuery UI 的服务器提供服务。尝试预先添加方案和主机:
<script src="http://jqueryui.com/resources/demos/external/jquery.mousewheel.js"></script>
<script src="http://jqueryui.com/resources/demos/external/globalize.js"></script>
<script src="http://jqueryui.com/resources/demos/external/globalize.culture.de-DE.js"></script>
<link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css" />