摘要:
//typeof instanceof区别 使用typeof来检测数据类型 function test(){} console.log(typeof 1); // number console.log(typeof test); // function console.log(typeof "yun 阅读全文
摘要:
<script> function Car(name,speed){ this.name=name; this.speed=speed; } Car.prototype.showName=function(){ console.log(this.name) } var car=new Car("奥迪 阅读全文
摘要:
$(function(){ $("#loginPopup").click(function(){ $(".pop-bg,.pop-wrapper").show(); 显示 $("body").css("overflow","hidden");阻止弹出框有进度条 }) $(".close-btn"). 阅读全文
摘要:
$(function(){//加购物车数字 $(".c_add").click(function(){ var val=$("#count-ipt").val();获取购物车里的数字 var num=parseInt(val)+1;购物车数字加一 var count=$(".in-count").t 阅读全文
摘要:
$(function(){ $(".small_box").hover(function(){鼠标移到图片上 $(this).find(".float_layer").show();找到小黑背景显示出来 $(".big_box").show(); 大图片同时显示 },function(){鼠标移出 阅读全文
摘要:
$(function(){ $(".load-more").click(function(){ // 被选元素是否包含指定的类名称 if($(this).hasClass("active")){//如果有active这个类 则它除移active这个类 元素的第一个祖先元素隐藏高度为30px $(th 阅读全文
摘要:
使用jQuery的页面需加 <script src="./js/jquery-3.3.1.min.js"></script> <script src="./js/index.js"></script> index.js $(function(){ var current=0; //当前的 var c 阅读全文
摘要:
//行内样式 display //隐藏 display:none 显示 display:原始值 如果没有原始值 则删除display样式 //动画路线 左上角到右下角 $(".show").click(function(){ $("div").show(); }) $(".hide").click( 阅读全文
摘要:
内部插入=>子节点 $(".append").click(function(){ //$("ul").append("<li>列表 append</li>") //追加后边 $("<li>列表 append</li>") .appendTo($("ul"));//效果相同 }) $(".prepen 阅读全文
摘要:
screen 屏幕 显示器左上角 page 页面 当前页面左上角 client 可视区域 显示页面的区域的左上角 offset 元素 元素的左上角 页面没有滚动条时, page和client基准点重合 function stopPropagation(e){ e.stopPropagation(); 阅读全文