我是JQuery的新手,我正在尝试将JQueryUI重新调整到我的代码中。但是,使用demo site中给出的示例实现它并不容易。
有人可以提供其他一些示例网站吗?
答案 0 :(得分:1)
您需要做的是拥有以下内容......
<script src="http://www.google.com/jsapi"></script>
<script>google.load("jquery",'1.7.1');</script>
<script>google.load("jqueryui", "1");</script>
<link type="text/css" rel="Stylesheet" href="http://ajax.microsoft.com/ajax/jquery.ui/1.8.5/themes/redmond/jquery-ui.css" />
解释:
以上是在谷歌或微软托管的CDN含义所以我没有必要向你展示。 但是在jquery UI上你需要在那里下载一个主题。
并选择以下文件
jquery core js
jquery ui js
jquery ui css
jquery images provided...
所以你把它们放在你的主机上,例如的public_html。
然后如上所述链接它们,但在适用的地方更改src和href。