不安面包

文章
3
资源
0
加入时间
2年10月21天

host 属性 和 hostname 属性

host 属性作用:设置或返回主机名和当前 URL 的端口号。语法:location.hostconsole.log(location.host)console.log(location.hostname)hostname 属性作用:一个可读可写的字符串,可设置或返回当前 URL 的主机名。语法:location.hostname区别:location.host 包含端口...

MVC中Global的Application_Start方法详解

Global文件Application_Start方法中包含注册区域、注册全局的Filter、注册路由、合并压缩、打包工具Combres private Logger logger = new Logger(typeof(MvcApplication)); protected void Application_Start() { ...