摘要:
阅读全文
摘要:
1:在根目录下的全局index.php中加下面这行:define('HTML_PATH', './htm');//生成静态页面的文件位置2:在项目的配置文件config.php中加下面这行:'HTML_FILE_SUFFIX' => '.html',// 默认静态文件后缀3:在需要生成静态页的action里加入下面显红的代码public function view() { $wheres = "id = $_GET[id]"; $news = $this->news->where($where 阅读全文
摘要:
教程源码:http://bbs.php100.com/read-htm-tid-74060.html用到的方法为:appendTo()格式:$(content).appendTo(selector)appendTo() 方法在被选元素的结尾(仍然在内部)插入指定内容。click() 方法触发 click 事件,或规定当发生 click 事件时运行的函数$(function(){//移到右边$('#add').click(function() {//获取选中的选项,删除并追加给对方$('#select1 option:selected').appendTo( 阅读全文
摘要:
s = " 屏幕分辨率的高:"+ window.screen.height+"\n"; s += " 屏幕分辨率的宽:"+ window.screen.width+"\n"; alert (s); 阅读全文
摘要:
//判断是否是电脑登录,还是手机登录 public function isMobil() { $useragent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''; $useragent_commentsblock = preg_match('|\(.*?\)|', $useragent, $matches) > 0 ? $matches[0] : ''; $mobile_os_list = array ( 阅读全文
摘要:
在JS中var content = encodeURI(encodeURI('中文字符'));在PHP服务端接收header("Content-type: text/html; charset=utf-8");$content = urldecode($_GET['content']);然后再存进数据库,就不会乱码了! 阅读全文
摘要:
在js里,对中文使用下面的方法encodeURIComponent(var) 函数就ok了! 阅读全文
摘要:
Query获取Select选择的Text和Value: 语法解释: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text 3. var checkValue=$("#select_id").val(); //获取Select选择的Value 4. var c 阅读全文
摘要:
ThinkPHP\Common\extend.php 中管理前台模版的截取{$vons.title|msubstr=0,26}原始的代码是无法使用截取支持…. 由于涉及到只有汉字检测最为准确需要加入代码让他正常的分页截取之后加入…function msubstr($str, $start=0, $length, $charset=”utf-8″, $suffix=true){if(strlen($str)/3>$length){if(function_exists(“mb_substr”)){return mb_substr($str, $start, $length, $charset 阅读全文
摘要:
首先,去官网下载最新版的kindeditor,然后把里面asp,jsp,net,example的全删除,然后改名为editor放进public(最外层目录的public)文件夹里面。在目录lib目录建立ORG文件夹(个人习惯用ORG存储公用类),建立一个共用类,editor.class.php下面是这个类的具体代码欢迎使用编辑器” * */function editor($Height="500px",$Width="700px",$Value="欢迎使用编辑器") {$this->Value = $Value;$this-&g 阅读全文