<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
        問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
        當前位置: 首頁 - 科技 - 知識百科 - 正文

        常用JavaScript代碼提示公共類封裝

        來源:懂視網 責編:小采 時間:2020-11-27 22:44:04
        文檔

        常用JavaScript代碼提示公共類封裝

        常用JavaScript代碼提示公共類封裝:希望對大家有幫助! 代碼如下:using System; using System.Web; namespace Jake.PublicJS { /// <summary> /// Summary description for PublicJS /// </summary> public class PublicJS
        推薦度:
        導讀常用JavaScript代碼提示公共類封裝:希望對大家有幫助! 代碼如下:using System; using System.Web; namespace Jake.PublicJS { /// <summary> /// Summary description for PublicJS /// </summary> public class PublicJS

        希望對大家有幫助!
        代碼如下:
        using System;
        using System.Web;
        namespace Jake.PublicJS
        {

        /// <summary>
        /// Summary description for PublicJS
        /// </summary>
        public class PublicJS
        {
        public PublicJS()
        {
        //
        // TODO: Add constructor logic here
        //
        }

        /// <summary>
        /// 1.靜態方法,彈出信息窗體
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="description">信息內容</param>
        /// <example>
        /// PublicJS.Alert(this,"NiHao!");
        /// </example>
        public static void Alert(System.Web.UI.Page page, string description)
        {
        if (description != null)
        {
        string scriptString = "<script language=JavaScript><!--
        ";
        scriptString += "alert('" + description + "');";
        scriptString += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", scriptString);
        }
        else
        {
        Alert(page, "描述信息為空!");
        }
        }

        /// <summary>
        /// 2.靜態方法,彈出信息窗體,并刷新頁面
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="description">信息內容</param>
        /// <example>
        /// PublicJS.Alert(this,"NiHao!");
        /// </example>
        public static void ReLoadMessage(System.Web.UI.Page page, string description, string PageID)
        {
        if (description != null)
        {
        string scriptString = "<script language=JavaScript><!--
        ";
        scriptString += "alert('" + description + "');";
        scriptString += "parent." + PageID + ".location.reload()";
        scriptString += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", scriptString);
        }
        else
        {
        Alert(page, "描述信息為空!");
        }
        }
        public static void Redirect(string url)
        {
        HttpResponse Response;
        Response = HttpContext.Current.Response;
        Response.Write("<script language=JScript><!--
        \n");
        Response.Write("window.location='" + url + "';\n");
        Response.Write("
        // --></script>\n");
        }

        /// <summary>
        /// 彈出對話框,轉向所指頁面
        /// </summary>
        /// <param name="description">提示信息</param>
        /// <param name="url">頁面</param>
        public static void MsgBoxRedrict(string description, string url)
        {
        HttpResponse Response;
        Response = HttpContext.Current.Response;
        Response.Write("<script language=JScript><!--
        \n");
        Response.Write("alert('" + description + "');\n");
        Response.Write("window.location='" + url + "';\n");
        Response.Write("
        // --></script>\n");
        //Response.Redirect(url);
        }

        /// <summary>
        /// 彈出對話框,確實轉向所指頁面
        /// </summary>
        /// <param name="description">提示信息</param>
        /// <param name="url">頁面</param>
        /// <param name="PrintUrl">確定后轉向的頁面</param>
        public static void MsgBoxRedrict(string description, string url, string PrintUrl)
        {
        HttpResponse Response;
        Response = HttpContext.Current.Response;
        Response.Write("<script language=JScript><!--
        \n");
        Response.Write("function prints()\n");
        Response.Write("{\n if(confirm('" + description + "'))\n");
        Response.Write("{window.location='" + PrintUrl + "';}\n");
        Response.Write("else\n");
        Response.Write("{window.location='" + url + "';}\n}\n");
        Response.Write("prints();\n");
        Response.Write("
        // --></script>\n");
        }

        /// <summary>
        /// 彈出對話框,轉向所指頁面
        /// </summary>
        /// <param name="description">提示信息</param>
        public static void MsgBoxRedrict(string description)
        {
        HttpResponse Response;
        Response = HttpContext.Current.Response;
        Response.Write("<script language=JScript><!--
        \n");
        Response.Write("alert('" + description + "');\n");
        Response.Write("history.go(-1);\n");
        Response.Write("
        // --></script>\n");
        }
        /// <summary>
        ///2 靜態方法,關閉一個網頁的父窗口,例如一個frame關閉其父窗口。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <example>
        /// PublicJS.CloseParent(this);
        /// </example>
        public static void CloseParent(System.Web.UI.Page page)
        {
        string scriptString = "<script language=JavaScript><!--
        ";
        scriptString += "window.parent.close();";
        scriptString += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", scriptString);
        }

        /// <summary>
        ///2 靜態方法,關閉一個網頁窗口。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <example>
        /// PublicJS.CloseParent(this);
        /// </example>
        public static void ClosePage(System.Web.UI.Page page)
        {
        string scriptString = "<script language=JavaScript><!--
        ";
        scriptString += "window.close();";
        scriptString += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", scriptString);
        }

        /// <summary>
        ///3 靜態方法,輸出一則消息后關閉一個模態網頁窗口并刷新父窗口
        /// 前提條件是必須調用此類中的OpenModalDialog方法
        /// 在該方法中自動生成刷新方法才能實現父頁面刷新。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="page">輸出消息</param>
        /// <example>
        /// PublicJS.CloseModalDialog(this);
        /// </example>
        public static void CloseModalDialogMessage(System.Web.UI.Page page, string Message)
        {

        string scriptString = "<script language=JavaScript><!--
        ";
        scriptString += "alert('" + Message + "');";
        scriptString += "window.close();";
        scriptString += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", scriptString);
        }

        /// <summary>
        ///3 靜態方法,關閉一個模態網頁窗口并刷新父窗口
        /// 前提條件是必須調用此類中的OpenModalDialog方法
        /// 在該方法中自動生成刷新方法才能實現父頁面刷新。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <example>
        /// PublicJS.CloseModalDialog(this);
        /// </example>
        public static void CloseModalDialog(System.Web.UI.Page page)
        {

        string scriptString = "<script language=JavaScript><!--
        ";
        scriptString += "window.close();";
        scriptString += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", scriptString);
        }

        /// <summary>
        /// 關閉模態網頁并傳值到父頁面
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="strValue">需要傳遞的值</param>
        public static void CloseModalDialog(System.Web.UI.Page page, string strValue)
        {
        string scriptString = "<script language=JavaScript><!--
        ";
        scriptString += "window.returnValue='" + strValue.Trim() + "';";
        scriptString += "window.close();";
        scriptString += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", scriptString);
        }

        /// <summary>
        ///4 靜態方法,關閉一個網頁窗口。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <example>
        /// PublicJS.CloseWindow(this);
        /// </example>
        public static void CloseWindow(System.Web.UI.Page page)
        {
        string scriptString = "<script language=JavaScript><!--
        ";
        scriptString += "window.opener=null;";
        scriptString += "window.close();";
        scriptString += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", scriptString);
        }

        /// <summary>
        ///5 靜態方法,執行客戶端一小塊腳本語言,
        ///利用page的RegisterClientScriptBlock方法在客戶端注冊一段腳本,
        ///參數script無需包括html標記<script type="text/javascript"><!--

        // --></script>。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="script">javascript腳本</param>
        /// <example>
        /// PublicJS.ExecuteBlock(this,"alert("Hello");");
        /// </example>
        public static void ExecuteBlock(System.Web.UI.Page page, string script)
        {
        if (script != null)
        {
        string scriptString = "<script language=JavaScript><!--
        ";
        scriptString += script;
        scriptString += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript9"))
        page.RegisterClientScriptBlock("clientScript9", scriptString);
        }
        else
        {
        Alert(page, "JavaScript腳本不能為空!");
        }
        }


        /// <summary>
        ///6    靜態方法,打開一個網頁對話框,并生成刷新頁面方法。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <param name="Width">寬度</param>
        /// <param name="Height">高度</param>
        /// <example>
        /// PublicJS.OpenModalDialog(page,"weihu.aspx",700,350);
        /// </example>
        public static void OpenModalDialog(System.Web.UI.Page page, string URL, int Width, int Height)
        {
        if (URL != null)
        {
        if (Width == 0 || Height == 0)
        {
        Alert(page, "頁面寬度和高度不能為零!");
        return;
        }
        string scriptString = "<script language='javascript'><!--
        ";
        scriptString += "function Refreshs()";
        scriptString += "{";
        //scriptString += "window.location.href= window.location.href;";
        scriptString += "}";
        scriptString += "window.showModalDialog('" + URL + "',window,'dialogHeight:" + Height + "px;dialogWidth:" + Width + "px;center:Yes;help:No;scroll:auto;resizable:No;status:No;');";
        scriptString += "window.location.href= window.location.href;";

        scriptString += "
        // --></script>";
        if (!page.IsStartupScriptRegistered("Startup"))
        page.RegisterStartupScript("Startup", scriptString);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }

        /// <summary>
        ///7    靜態方法,打開一個模式對話框
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <param name="Attribute">屬性</param>
        /// <param name="Width">寬度</param>
        /// <param name="Height">高度</param>
        /// <example>
        /// PublicJS.OpenModalDialog(page,"weihu.aspx","scrollbars=yes,status=yes",700,350);
        /// </example>
        public static void OpenModalDialog(System.Web.UI.Page page, string URL, string Attribute, int Width, int Height)
        {
        if (URL != null)
        {
        if (Width == 0 || Height == 0)
        {
        Alert(page, "頁面寬度和高度不能為零!");
        return;
        }
        if (Attribute == "")
        Attribute = "center:Yes;help:No;scroll:No;resizable:No;status:No;";
        string scriptString = "<script language='javascript'><!--
        ";
        //scriptString += "function Refresh()";
        //scriptString += "{";                    
        scriptString += "window.showModalDialog('" + URL + "',window,'dialogHeight:" + Height + "px;dialogWidth:" + Width + "px;" + Attribute + "')";
        //scriptString += "    window.location.href= window.location.href;";    
        //scriptString += "}";
        //scriptString += " Refresh();";
        scriptString += "
        // --></script>";
        if (!page.IsStartupScriptRegistered("Startup"))
        page.RegisterStartupScript("Startup", scriptString);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }


        /// <summary>
        ///8 靜態方法,打開一個無模式網頁對話框。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <param name="Width">寬度</param>
        /// <param name="Height">高度</param>
        /// <example>
        /// PublicJS.OpenDialog(page,"weihu.aspx",700,350);
        /// </example>
        public static void OpenDialog(System.Web.UI.Page page, string URL, int Width, int Height)
        {
        if (URL != null)
        {
        if (Width == 0 || Height == 0)
        {
        Alert(page, "頁面寬度和高度不能為零!");
        return;
        }
        string str = "<script language='javascript'><!--
        "
        + "window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=auto,resizable=Yes,width=" + Width + ",height=" + Height + "')"
        + "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", str);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }

        /// <summary>
        ///9 靜態方法,打開一個IE窗口(無標題欄、工具欄、地址欄等)。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <param name="Width">寬度</param>
        /// <param name="Height">高度</param>
        /// <param name="Left">左邊距</param>
        /// <param name="Top">上邊距</param>
        /// <example>
        /// PublicJS.OpenIEWindow(page,"weihu.aspx",700,350,10,20);
        /// </example>
        public static void OpenIEWindow(System.Web.UI.Page page, string URL, int Width, int Height, int Left, int Top)
        {
        if (URL != null)
        {
        if (Width == 0 || Height == 0)
        {
        Alert(page, "頁面寬度和高度不能為零!");
        return;
        }
        string str = "<script language='javascript'><!--
        "
        + "tt = window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + Width + ",height=" + Height + ",left=" + Left + ",top=" + Top + "'); tt.focus();"
        + "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", str);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }

        /// <summary>
        ///9 靜態方法,打開一個IE窗口(無標題欄、工具欄、地址欄等)。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <param name="Width">寬度</param>
        /// <param name="Height">高度</param>
        /// <param name="Left">左邊距</param>
        /// <param name="Top">上邊距</param>
        /// <example>
        /// PublicJS.OpenIEWindow(page,"weihu.aspx",700,350,10,20);
        /// </example>
        public static void OpenIEWindows(System.Web.UI.Page page, string URL, int Width, int Height, int Left, int Top)
        {
        if (URL != null)
        {
        if (Width == 0 || Height == 0)
        {
        Alert(page, "頁面寬度和高度不能為零!");
        return;
        }
        //string str = "<script language='javascript'><!--
        "
        // + "window.open('" + URL + "','','location=no,status=no,menubar=yes,scrollbars=yes,resizable=no,width=" + Width + ",height=" + Height + ",left=" + Left + ",top=" + Top + "');"
        // + "
        // --></script>";
        string str = "<script language='javascript'><!--
        "
        + "tt = window.open('" + URL + "','','location=no,status=no,toolbar=no,menubar=yes,scrollbars=yes,resizable=yes,fullscreen=no'); tt.focus();"
        + "
        // --></script>";

        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", str);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }

        public static void OpenIEWindows(System.Web.UI.Page page, string URL, int Width, int Height)
        {
        if (URL != null)
        {
        if (Width == 0 || Height == 0)
        {
        Alert(page, "頁面寬度和高度不能為零!");
        return;
        }
        string str = "<script language='javascript'><!--
        ";
        str += "a = window.open(\"" + URL + "\", \"\", \"fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=" + Width + ",height=" + Height + "\", true);";
        str += "a.focus();";
        str += "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", str);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }


        /// <summary>
        ///10 靜態方法,打開一個IE窗口(無標題欄、工具欄、地址欄等)。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <example>
        /// PublicJS.OpenIEWindow(page,"weihu.aspx");
        /// </example>
        public static void OpenIEWindow(System.Web.UI.Page page, string URL)
        {
        if (URL != null)
        {
        string str = "<script language='javascript'><!--
        "
        + "var Cwin=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=screen.availWidth-20,height=screen.availHeight-20,left=10,top=10');"
        + "Cwin.resizeTo(screen.availWidth-20,screen.availHeight-20);"
        + "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", str);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }

        /// <summary>
        ///11 靜態方法,打開一個IE窗口(無標題欄、工具欄、地址欄等)。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <param name="Width">寬度</param>
        /// <param name="Height">高度</param>
        /// <example>
        /// PublicJS.OpenIEWindow(page,"weihu.aspx",700,350);
        /// </example>
        public static void OpenIEWindow(System.Web.UI.Page page, string URL, int Width, int Height)
        {
        if (URL != null)
        {
        string str = "<script language='javascript'><!--
        "
        + "var Cwin=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + Width + ",height=" + Height + ",left=10,top=10');"
        + "Cwin.moveTo((screen.availWidth-" + Width + ")/2,(screen.availHeight-" + Height + ")/2);"
        + "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", str);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }

        /// <summary>
        ///12 靜態方法,打開一個IE窗口(無標題欄、工具欄、地址欄等)
        ///在屏幕的最右邊,上下滿屏,寬度由參數指定。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <param name="Width">寬度</param>
        /// <example>
        /// PublicJS.OpenIEWindowRight(page,"weihu.aspx",700);
        /// </example>
        public static void OpenIEWindowRight(System.Web.UI.Page page, string URL, int Width)
        {
        if (URL != null)
        {
        if (Width == 0)
        {
        Alert(page, "頁面寬度和高度不能為零!");
        return;
        }
        string str = "<script language='javascript'><!--
        "
        + "newwindow=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + Width + ",height=document.height');"
        + "newwindow.moveTo(screen.width-" + Width + ",0);newwindow.resizeTo(" + Width + ",screen.height);"
        + "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", str);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }

        /// <summary>
        ///13    靜態方法,打開一個IE窗口(無標題欄、工具欄、地址欄等),在屏幕的最右邊,上下位置在中間。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <param name="Width">寬度</param>
        /// <param name="Height">高度</param>
        /// <example>
        /// PublicJS.OpenIEWindowRight(page,"weihu.aspx",700,350);
        /// </example>
        public static void OpenIEWindowRight(System.Web.UI.Page page, string URL, int Width, int Height)
        {
        if (URL != null)
        {
        if (Width == 0 || Height == 0)
        {
        Alert(page, "頁面寬度和高度不能為零!");
        return;
        }
        string str = "<script language='javascript'><!--
        "
        + "newwindow=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + Width + ",height=" + Height + "');"
        + "newwindow.moveTo(screen.width-" + Width + ",(screen.height-" + Height + ")/2);"
        + "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", str);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }

        /// <summary>
        /// 設置控件焦點
        /// </summary>
        /// <param name="kongjianmc">控件字符串</param>
        public static void SheZhiJD(System.Web.UI.Page page, string kongjianmc)
        {
        string jiaoben = "";
        if (kongjianmc != "")
        {
        jiaoben = "var control;";
        jiaoben += "control = document.getElementById('" + kongjianmc + "');";
        jiaoben += "if (control!=null) ";
        jiaoben += "{document.all['" + kongjianmc + "'].focus();}";
        page.RegisterStartupScript("focus", "<script type="text/javascript"><!--
        " + jiaoben + "
        // --></script>");
        }
        }

        /// <summary>
        ///14 靜態方法,全屏打開一個IE窗口(無標題欄、工具欄、地址欄等)。
        /// </summary>
        /// <param name="page">頁面對象</param>
        /// <param name="URL">頁面名稱</param>
        /// <example>
        /// PublicJS.OpenIEWindow(page,"weihu.aspx");
        /// </example>
        public static void OpenIEWindowFill(System.Web.UI.Page page, string URL)
        {
        if (URL != null)
        {
        string str = "<script language='javascript'><!--
        "
        + "var Cwin=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=(screen.availWidth),height=(screen.availheight),left=10,top=10');"
        //+ "alert(screen.availWidth);alert(screen.availheight); Cwin.moveTo(0,0);"
        + "
        // --></script>";
        if (!page.IsClientScriptBlockRegistered("clientScript"))
        page.RegisterClientScriptBlock("clientScript", str);
        }
        else
        {
        Alert(page, "頁面地址不能為空!");
        }
        }

        }
        }

        聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

        文檔

        常用JavaScript代碼提示公共類封裝

        常用JavaScript代碼提示公共類封裝:希望對大家有幫助! 代碼如下:using System; using System.Web; namespace Jake.PublicJS { /// <summary> /// Summary description for PublicJS /// </summary> public class PublicJS
        推薦度:
        標簽: 提示 js 封裝
        • 熱門焦點

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 亚洲日韩精品一区二区三区无码| 18禁超污无遮挡无码免费网站国产 | xxxxx免费视频| 亚洲欧洲另类春色校园小说| 少妇无码一区二区三区免费| 亚洲天天做日日做天天欢毛片| 四虎影视在线影院在线观看免费视频 | 亚洲一区二区三区免费在线观看| 亚洲v高清理论电影| a毛片全部免费播放| 亚洲视频在线观看网址| 亚洲w码欧洲s码免费| 男人天堂2018亚洲男人天堂| 美女被免费视频网站a国产 | 免费又黄又硬又爽大片| 亚洲一级片免费看| 亚洲免费在线视频| 成年女人免费碰碰视频| 免费在线观看自拍性爱视频| 日本亚洲视频在线| 中文字幕无码播放免费| 麻豆亚洲AV成人无码久久精品 | 日日摸日日碰夜夜爽亚洲| 亚洲情侣偷拍精品| 日韩视频在线观看免费| 久久久久精品国产亚洲AV无码| 在线观看成人免费视频| 丰满人妻一区二区三区免费视频| 亚洲AV日韩AV天堂一区二区三区| a级毛片无码免费真人| 九九免费久久这里有精品23| 久久亚洲国产视频| 国产成人无码区免费A∨视频网站| 亚洲va在线va天堂va四虎| 毛片a级毛片免费观看免下载| 一级做a爰片性色毛片免费网站| 亚洲av无码国产精品色午夜字幕| 国产成人无码免费看视频软件| 成人精品综合免费视频| 亚洲性猛交xx乱| 中文字幕亚洲天堂|