zoukankan      html  css  js  c++  java
  • asp.net js 提示信息封装函数

         /// <summary>
            /// js 提示信息 例子如 只提示信息 可以JavaScript("hell world!")
            /// 如果有其他脚本可以JavaScript("alert('hello world!');","document.location='default.aspx';")
            /// </summary>
            /// <param name="actions"></param>
            public void JavaScript(params string[] actions)
            {
                string action = "";
                if (actions.Length > 1)
                {
                    action = string.Format("{0}",  string.Join("",actions));
                }
                else
                {
                    action = string.Format("alert('{0}')", string.Join("", actions));
                }
                ScriptManager.RegisterClientScriptBlock(this, typeof(string), "key" + new Random().Next(1000), string.Format("<script defer=\"defer\">{0}</script>", action), false);
               
            }
  • 相关阅读:
    MVC框架简介
    模型-视图-控制器模式
    高德地图基本开发
    质量属性的六个常见属性场景分析
    架构漫谈读后感
    第十周
    第九周总结
    第八周总结
    springboot基于mybatis的pegehelper分页插件
    webmagic之爬取数据存储为TXT
  • 原文地址:https://www.cnblogs.com/wanyuan8/p/2469290.html
Copyright © 2011-2022 走看看