本文摘自PHP中文网,作者零下一度,侵删。
EasyLoader(简单加载)
对象的属性和方法:

使用:
1 | <script src= "~/jquery-easyui-1.5.2/jquery.min.js?1.1.11" ></script><script src= "~/jquery-easyui-1.5.2/easyloader.js?1.1.11" ></script>
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <script type= "text/javascript" >easyloader.theme = "bootstrap" ;
easyloader.locale = "zh_CH" ;
easyloader.load( "dialog" , function () {
dialoginit();
});
easyloader.load( "layout" );
easyloader.load( "draggable" );
easyloader.load( "droppable" );
easyloader.load( 'messager,' , function () {
$( function () {
}); function message_alert(title,content) {
$.messager.alert(title, content);
}
|
以上就是EasyLoader(简单加载)实例的详细内容!
相关阅读 >>
easyloader(简单加载)实例
parser(解析器)的使用实例教程
更多相关阅读请进入《JqueryEasyUI》频道 >>
清华大学出版社
作者:[美]克里斯琴·内格尔(Christian Nagel)著。出版时间:2019年3月。
转载请注明出处:木庄网络博客 » EasyLoader(简单加载)实例