js object template

Posted 酶技术

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js object template相关的知识,希望对你有一定的参考价值。

//== Class Definition
var Test = function() {

    var login = $(‘#m_login‘);
   
    //== Private Functions
    var funaname = function() {
        login.removeClass(‘m-login--signin‘);
    }

    var handleTest = function() {
      console.log(‘asdf‘, ‘asdf‘);

    }

    //== Public Functions
    return {
        // public functions
        init: function() {
            handleTest();
        }
    };
}();

//== Class Initialization
jQuery(document).ready(function() {
    Test.init();
});

 

 

以上是关于js object template的主要内容,如果未能解决你的问题,请参考以下文章

vue.js 2 - 将单个文件组件的 html 片段提取到独立文件中

javascript模板引擎artTemplate.js——template()方法

iphone / Objective c的最佳代码片段网站是啥[重复]

如何将这个 Objective-C 代码片段写入 Swift?

vscode中设置vue代码片段

template.js插件和ajax一起使用的例子