摘要:
用法:非得加上html头 utf-8编码 其它编码无测试head 中引用再把以下代码放到合试的地方简体繁體// 网页简繁体转换// 日期:2007年4月1日// 作者:niker// 本js用于客户在网站页面选择繁体中文或简体中文显示,默认是正常显示,即简繁体同时显示// 在用户第一次访问网页时,会自动检测客户端语言进行操作并提示.此功能可关闭// 本程序只在UTF8编码下测试过,不保证其他编码有效// -------------- 以下参数大部分可以更改 --------------------//s = simplified 简体中文 t = traditional 繁体中文 n = no 阅读全文
摘要:
javascript中的location.href有很多种用法,主要如下。self.location.href=”/url” 当前页面打开URL页面location.href=”/url” 当前页面打开URL页面windows.location.href=”/url” 当前页面打开URL页面,前面三个用法相同。this.location.href=”/url” 当前页面打开URL页面parent.location.href=”/url” 在父页面打开新页面top.location.href=”/url” 在顶层页面打开新页面如果页面中自定义了frame,那么可将parent self top换 阅读全文
摘要:
1 public function login_get (){ 2 $this->load->helper ( 'auth' ); 3 4 $redirectUrl = $this->input->cookie ( 'inapp_redirect', TRUE ); 5 $redirectUrl = empty ( $redirectUrl ) ? '/index' : $redirectUrl; 6 7 // 判斷是否已登入 8 if ( $this->input->cookie ( 'i... 阅读全文