只是尝试在网站上添加jQuery进度条。 我做了jquery docs所说的添加id为id = progressbar
的div <div id="progressbar"></div>
然后我有:
<script src="include/jquery-1.5.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#progressbar').progressbar({ value: 37 }); //dies here
});
但我看到对象不支持IE中的这个属性或方法。它指向“21”字符3,这就是那一行:
$('#progressbar').progressbar({ value: 37 }); //dies here
我是否需要执行其他操作才能显示此进度条?
我还补充说:
<script src="include/jquery-ui-1.8.13.custom.min.js" type="text/javascript"></script>
所以现在我没有看到错误,但我也没有看到进度条......
答案 0 :(得分:4)
包含jQuery,jQuery UI js文件和jQuery UI CSS文件,它应该显示出来。我的猜测是你错过了CSS文件。
答案 1 :(得分:-3)
啊,我忘了添加css文件,现在正在使用。