0

我在 php 文件中有 jquery 脚本:

print "<link rel=\"stylesheet\" href=\"http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css\" />                                                                                                       
 <script src=\"http://code.jquery.com/ui/1.10.3/jquery-ui.js\"></script>                                                                                                                                          
<link rel=\"stylesheet\" href=\"/resources/demos/style.css\" />";


print "<script>                                                                                                                                                                                                  
 $(function() {                                                                                                                                                                                                   
 $( \"#p\" ).progressbar({ max: 10 });                                                                                                                                                                              
 $( \"#p\" ).progressbar({                                                                                                                                                                                          
 value:" . $_SESSION['pagenum'] . "});                                                                                                                                                                              
 $( '#p' ).progressbar( 'enable' );                                                                                                                                                                                 
 });                                                                                                                                                                                                            
 </script>";

我有看起来像这样的html:

print "<div id = 'p'></div>";

但是进度条没有出现。我正在打印会话变量,所以我知道它退出了。进度条没有发生的任何原因?谢谢!

4

0 回答 0