UNPKG

jquery-weui

Version:
74 lines (68 loc) 1.84 kB
<!DOCTYPE html> <html> <head> <title>jQuery WeUI</title> <% include _head.html %> </head> <body ontouchstart> <header class='demos-header'> <h1 class="demos-title">Action Sheet</h1> </header> <div class='demos-content-padded'> <a href="javascript:;" id='show-actions' class="weui_btn weui_btn_primary">显示 ActionSheet</a> <a href="javascript:;" id='show-actions-bg' class="weui_btn weui_btn_primary">自定义背景色</a> </div> <% include _foot.html %> <script> $(document).on("click", "#show-actions", function() { $.actions({ title: "选择操作", onClose: function() { console.log("close"); }, actions: [ { text: "发布", className: "color-primary", onClick: function() { $.alert("发布成功"); } }, { text: "编辑", className: "color-warning", onClick: function() { $.alert("你选择了“编辑”"); } }, { text: "删除", className: 'color-danger', onClick: function() { $.alert("你选择了“删除”"); } } ] }); }); $(document).on("click", "#show-actions-bg", function() { $.actions({ actions: [ { text: "发布", className: "bg-primary", }, { text: "编辑", className: "bg-warning", }, { text: "删除", className: 'bg-danger', } ] }); }); </script> </body> </html>