zoukankan      html  css  js  c++  java
  • 弹出插件

    var pop =null;
    function ShowIframe(title,contentUrl,width,height)
    {
    pop=new Popup({ contentType:1,isReloadOnClose:false,width,height:height});
    pop.setContent("contentUrl",contentUrl);
    pop.setContent("title",title);
    pop.build();
    pop.show();
    }
    function ShowHtmlString(title,strHtml,width,height)
    {
    pop=new Popup({ contentType:2,isReloadOnClose:false,width,height:height});
    pop.setContent("contentHtml",strHtml);
    pop.setContent("title",title);
    pop.build();
    pop.show();
    }
    function ShowConfirm(title,confirmCon,id,str,width,height)
    {
    var pop=new Popup({ contentType:3,isReloadOnClose:false,width,height:height});
    pop.setContent("title",title);
    pop.setContent("confirmCon",confirmCon);
    pop.setContent("callBack",ShowCallBack);
    pop.setContent("parameter",{id:id,str:str,obj:pop});
    pop.build();
    pop.show();
    }
    function ShowAlert(title,alertCon,width,height)
    {
    pop=new Popup({ contentType:4,isReloadOnClose:false,width,height:height});
    pop.setContent("title",title);
    pop.setContent("alertCon",alertCon);
    pop.build();
    pop.show();
    }
    function ShowCallBack(para)
    {
    var o_pop = para["obj"]
    var obj = document.getElementById(para["id"]);
    o_pop.close();
    obj.click();
    }
    function ClosePop()
    {
    pop.close();
    }

    function __ToShowIframe(title, url, width, height) {
    if (url.indexOf("?") == -1)
    url = url + "?t=" + Math.random();
    else
    url = url + "&t=" + Math.random();
    ShowIframe(title, url, width, height);
    }

    $.formValidator.initConfig({ formid: "form1", onerror: function(msg) { }, onsuccess: function() { } });
    $("#txtUserName").formValidator({ onshow: "请填写用户名", onfocus: "必填 用户名以字母/数字/下划线组成(6~16)" }).regexValidator({ regexp: "^[a-zA-Z0-9\_]{5,20}$", onerror: "用户名必须以字母/数字/下划线组成(6~16)" });

  • 相关阅读:
    spring in action小结4.1
    spring in action小结3 运行时值注入
    python-__init__.py 与模块对象的关系
    Python-常用库扩展
    Qt-优化布局结构
    Python-文件修改器
    C语言-数据结构(一)
    Python-PyQt4学习笔记
    Python-PyQt4学习资料汇总
    Linux-查看C语言手册及man的特殊用法
  • 原文地址:https://www.cnblogs.com/lilin123/p/2683699.html
Copyright © 2011-2022 走看看