随笔分类 - 常用语句
常用语句
摘要:$(function(){var nav=$(".nav"); //得到导航对象var win=$(window); //得到窗口对象var sc=$(document);//得到document文档对象。win.scroll(function(){ if(sc.scrollTop()>=60)...
阅读全文
摘要:下面介绍JQUERY的父,子,兄弟节点查找方法jQuery.parent(expr) 找父亲节点,可以传入expr进行过滤,比如$("span").parent()或者$("span").parent(".class")jQuery.parents(expr),类似于jQuery.parents(e...
阅读全文
摘要:header("content-type:text/html;charset=utf-8"); //php语句中编码
阅读全文
摘要:<?php$conn=mysql_connect("localhost","root","root");mysql_select_db("db_database17",$conn);mysql_query("set names gb2312");?><?php$sql1=mysql_query("select usernc,face,ip,email,qq from tb_user where id='".$info["userid&quo
阅读全文
摘要:PHP常用代码1、连接MYSQL数据库代码<?php$connec=mysql_connect("localhost","root","root") or die("不能连接数据库服务器: ".mysql_error()); mysql_select_db("liuyanben",$connec) or die ("不能选择数据库: ".mysql_error()); mysql_query("set names 'gbk'");?&
阅读全文
浙公网安备 33010602011771号