JqueryUI CSS Scope:Dialog和Datepicker

阅读更多

在 JqueryUI  定义 Theme时,点击“Advanced Theme Settings”,输入CSS Scope,如:dialogAndDate。在需要使用该theme的Dialog和Datepicker时:

 

Dialog:

 

 

$( "#dialog" ).dialog().parent(".ui-dialog").wrap("

");

 

 

 

Datepicker :

 

 

$('#datepicker').datepicker({

inline: true,dateFormat:'yy-mm-dd'

});

 

$('#ui-datepicker-div').wrap('

');

 

 

 

你可能感兴趣的:(JqueryUI CSS Scope:Dialog和Datepicker)