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获取访客信息类 NEW <?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 >