Home  >  Article  >  Backend Development  >  EasyLoader (simple loading) example

EasyLoader (simple loading) example

零下一度
零下一度Original
2017-06-24 09:44:541384browse
EasyLoader (simple loading)

Object properties and methods:

EasyLoader (simple loading) example

##Usage:


<script></script><script></script>
<script>easyloader.theme = "bootstrap";
        easyloader.locale = "zh_CH";
        easyloader.load("dialog",function() {
            dialoginit();
        });
        easyloader.load("layout");
        easyloader.load("draggable");
        easyloader.load("droppable");
        easyloader.load(&#39;messager,&#39;, function () { // 加载指定模块  //$.messager.alert(&#39;Title&#39;, &#39;load ok&#39;);        });
        $(function () {
           
        });function message_alert(title,content) {
            $.messager.alert(title, content);

        }</script>

The above is the detailed content of EasyLoader (simple loading) example. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn