1. 引入样式文件:
<link rel="stylesheet" href="easyhelper.min.css">
2. 引入脚本文件:
// es6-shim 针对的是不支持 es6 语法的浏览器 <script src="es6-shim.min.js"></script> <script src="http://www.jq22.com/jquery/jquery-3.3.1.js"></script> <script src="jquery.transit.min.js"></script> <script src="easyhelper.min.js"></script>
3. 设置示例按钮:
<button id="open-dialog">打开对话框</button>
5. 创建对话框:
$( "#open-dialog" ).on("click", function () { Helper.ui.dialog({ title: "对话框标题", content: "对话框内容" }); })