Web开发 How to let your website login with domain account when using
如何让你的网站以域账号登录 Select your website in IIS Manager, open Authentication, enable Windows Authentication and Basic Authenticatio……
Web开发 Wamp Https 的 SSL认证 配置说明
Wamp Https 的 SSL认证 配置说明版本 Apache2.2.11注:右下角图标的 重启 不能有效加载 配置文件 应退出后重新运行注:C……
Web开发 array函数的坑
由于PHP是弱类型语言,所以有自动类型转换 例子 1 $array = [0, 1, 2, 3]; 2 3 var_dump(in_array(abc, $array)); //true 4 var_dump(in_arr……
Web开发 js表头标题固定
1. //表头跟踪固定(按钮与表头) var trObj = $(#zdy_id).find(tr:eq(3));//自定义zdy_id,处于第3行 var trObjChild = $(trObj).childre……
Web开发 js 次方 开方 对数
次方 ,用Math.pow(值,次方数) 如: Math.pow(3,2); 3的平方 Math.Pow(2,3); 2的立方 开方Math.sqrt(值) 如: Math.sqrt(9); 9 开方,返……
Web开发 https本地自签名证书添加到信任证书访问
1、背景 本文适用于基于https(http+ssl)的网站通信、本地调试等,上线是请寻找免费 ssl证书申请。 本地调试过程中,一……