03 2016 档案
摘要:1 2 3 4 5 6 7 8 38 39 下面是一个导航条 40 41 42 首页 43 44 新闻中心 45 46 新手入门 47 ...
阅读全文
摘要:jquery获取某个标签的html()方法的时候总是只能获取内部的 如果获取包含自身的HTML代码呢? 用.prop("outerHTML")方法获取 这样就能拿到包含自己的html数据了
阅读全文
摘要:主体代码: <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>演示:使用jquery.qrcode生成二维码</title> <style type="text/css"> .demo{width:400px; margin:40
阅读全文
摘要:<?php $array=array("first","sencond","third"); #1.echo end($array); #2.echo $array[count($array)-1]; #3.echo array_pop($array); #4.echo array_pop(arra
阅读全文
摘要:<?php /** * [L 加载语言的L的方法] * @param [string] $key [语言键的名称] * @return [string] $value [取到的语言值] */ function L($key='',$language_name='') { static $lang_a
阅读全文
摘要:<?php $res=system("ipconfig -all"); $contents=trim(ob_get_clean()); $contents=str_replace("\r\n","",$contents); $contents=explode(" ",$contents); fore
阅读全文