上一页 1 ··· 115 116 117 118 119 120 121 122 123 ··· 125 下一页
摘要: <html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript"> $(document).ready(function(){ function ani 阅读全文
posted @ 2017-08-14 19:54 ThisCall 阅读(932) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-14 19:16 ThisCall 阅读(120) 评论(0) 推荐(0) 编辑
摘要: $(function(){// 事件冒泡 $('').bind("click",function(event){ //事件内容 //停止事件冒泡 event.stopPropagation(); })// 默认行为 $("#sub").bind("click",function(event){ // 阅读全文
posted @ 2017-08-14 09:11 ThisCall 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 选择第一个到第六个li元素ul li:nth-child(n+3):not(:nth-child(n+6)){}选择第二个到最后一个ul li:nth-child(2)~li{}选择除了第一个和最后一个ul li:not(:first-child):not(:last-child){} 阅读全文
posted @ 2017-08-14 08:54 ThisCall 阅读(1267) 评论(0) 推荐(0) 编辑
摘要: 参考网站 http://blog.csdn.net/yume_sola/article/details/70215695 http://www.youdiancms.com/jianrong/614.html 标签选择器 就是用标签名来当做选择器。 1 、所有标签都能够当做选择器,比如body、h1 阅读全文
posted @ 2017-08-13 09:45 ThisCall 阅读(603) 评论(0) 推荐(0) 编辑
摘要: CSS选择器及其继承特性、层叠特性1.基本选择器 标记 id class 这个就不再作介绍了 2.复合选择器 交集 交集选择器由两个选择器直接连接构成,其结果是选中二者各自元素范围的交集 其中第一个必须是标记选择器,第二个必须是类别选择器或者ID选择器,须连续书写 如,div.class 并集 并集 阅读全文
posted @ 2017-08-13 09:45 ThisCall 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 声明变量 var $variable= Jquery 对象; var varibake= DOM对象; var $cr= $("#id"); Jquery 对象; var cr= $cr.get(0) DOM对象;$cr.get(0)此处与 $cr[0] 等同 var cr=document.get 阅读全文
posted @ 2017-08-13 08:44 ThisCall 阅读(198) 评论(0) 推荐(0) 编辑
摘要: <?php //测试用的数组 $info = array('11'=>'aaa', '22'=>'bbb', '33'=>'ccc'); //第一种,将整个数组作为一个对象输出,DEBUG专用 echo '<br> <br>'; var_dump($info); //第二种,foreach,只能输入 阅读全文
posted @ 2017-08-11 19:42 ThisCall 阅读(349) 评论(0) 推荐(0) 编辑
摘要: const http = require("http");const express = require("express");const mysql = require("mysql"); var pool = mysql.createPool({ host:'127.0.0.1', user:' 阅读全文
posted @ 2017-08-10 17:20 ThisCall 阅读(203) 评论(0) 推荐(0) 编辑
摘要: //处理客户post请求//*1:加载相应模块 http express querystring//*2:创建web服务器//*3:监听端口8080const http = require("http");const express = require("express");const qs = r 阅读全文
posted @ 2017-08-10 17:05 ThisCall 阅读(336) 评论(0) 推荐(0) 编辑
上一页 1 ··· 115 116 117 118 119 120 121 122 123 ··· 125 下一页