201409-15 c#.net常用函数总结 NEW 1、DateTime 数字型System.DateTime currentTime=new System.DateTime();1.1 取当前年月日时分秒currentTime=System.DateTime.Now;1.2 取当前年int 年=currentTime.Year;1.3 取当前月int 月=currentTime.Month;1.4 取当前日int 日=curr... Read More >
201408-29 Vcastr3使用方法 NEW <?php$str= $data['video'];$result = substr ($str, -3);if ($result=="flv"){ ?><object type="application/x-shockwave-flash" data="<?php echo $tag['path.skin']; ?>company_view/vcastr3.swf... Read More >
201408-29 php截取文本函数和去除html格式函数 NEW function wml_strip($string) //去除格式,可以选择保留哪些标签{$string = str_replace(array(' ', '&', '"', ''', '“', '”', '—', '&... Read More >
201408-11 PHP获取访客信息类 <?php /** * 获取访客信息的类:语言、浏览器、操作系统、IP、地理位置、ISP。 * 使用: * $obj = new class_guest_info; * $obj->GetLang(); //获取访客语言:简体中文、繁體中文、English。 * $obj->GetBrowser(); //获取访客浏览器:MSIE、Firefox、Chrome、Safari、Oper... Read More >
201408-02 JavaScript判断是否移动设备,哪种移动设备 1、原生JavaScript判断是否移动设备function isMobile(){ if (typeof this._isMobile === 'boolean'){ return this._isMobile; } var screenWidth = this.getScreenWidth(); var fixViewPortsExperiment = rendererModel.runningExperiments.FixViewport || rendererMod... Read More >
201408-02 jquery 点击切换样式 $("#smenu").find("li").click(function(){$(this).parent().children().siblings().removeClass("bline"); //遍历删除样式$(this).addClass("bline");//var val = "index_content.php?id="+$(this).attr("val");// $("#iframe1",parent.document.body).attr("src",... Read More >
201408-01 过滤html标签的一个函数 function wml_strip($string){$string = str_replace(array(' ', '&', '"', ''', '“', '”', '—', '<', '>', '·', '…', '&'), array(' ', '&'... Read More >
201407-31 ajax请求页如何真正返回json数据 $r = $db->query("SELECT title, thumb ,description , contentid FROM ".DB_PRE."content WHERE catid =2165 AND status = 99 AND thumb !='' ORDER BY contentid DESC limit 0,2");/*while($s = $db->fetch_array($r)){$data[]=array('contentid'=>... Read More >
201407-30 jQuery+PHP实现浏览更多内容 基本原理:页面载入时,jQuery向后台请求数据,PHP通过查询数据库将最新的几条记录显示在列表页,在列表页的底部有个“更多”链接,通过触发该链接,向服务端发送Ajax请求,后台PHP程序得到请求参数,并作出相应,获取数据库相应的记录并以JSON的形式返回给前台页面,前台页面jQuery解析JSON数据,并将数据追加到列表页。其实就是Ajax分页效果。XHTML首先要引入jquery库和jquery.more.js插件,jquery.more.js已经将许多功能都封装好了,并... Read More >
201407-29 jQuery Email邮箱自动补全 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>输入Email相关字符自动提示Email地址</title><... Read More >