/** * @file 提示帮助 * @author life * */ define('tips', [], function() { var tpl = [''].join(''); var $tpl = $(tpl); var view = { init: function () { $("#tipsBtn").click(function() { $tpl.modal({show: true}); }); } }; view.init(); });