我下载了 jQuery UI 1.10.3。它带有一个旧版本的 jQuery,即 1.9.1。我有一个更高版本的 jQuery:1.10.2。但是 jQuery UI 似乎不喜欢与 1.10.2 一起使用...有没有办法让它工作?或者我应该忍受它..
<script src="js/jquery-1.9.1.js"></script>
<!--
<script src="jquery-1.10.2.min.js">
-->
<script src="js/jquery-ui-1.10.3.custom.js"></script>
</script>
<script src = song_Selector.js>
</script>
<script>
$(function() {
$( "#progressbar" ).progressbar({
value: 50
});
});
</script>
<body>
<p id="demo">Click the button to do something.</p>
<button onclick="draw_Progress_Bar ()">Try it</button>
<h2 class="demoHeaders">Progress Bar</h2>
<div id="progressbar"></div>
</body>
代码在上面,没有<html>
标签。