国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
302B

  1. //创建多组对话框
  2. function createDialog(options) {
  3. options = $.extend({title: "对话框"}, options || {});
  4. var dialog = new Boxy("<div><p>这是一个对话框 <a href='#nogo' onclick='Boxy.get(this).hide(); return false'>单击我!</a></p></div>", options);
  5. return false;
  6. }