时间:2021-05-26
jquery库文件略庞大,在某些情况下,需要尽量减少加载的文件(文件大小),需要用纯js来编写效果
$('#layer')document.getElementById('layer')$('#layer span')var layer = document.getElementById('layer');var span = layer.getElementsByTagName('span');$('#inner').parent()document.getElementById("inner").parentNode$(window).width();document.body.clientWidth$('#layer').width();document.getElementById('layer').style.width$('#wrap').append('<span>a</span>');var span=document.createElement("span");span.innerHTML='a';document.getElementById("wrap").appendChild(span);$('#wrap span').remove();deleteSpan();function deleteSpan(){var content=document.getElementById("wrap");var childs=content.getElementsByTagName("span");if(childs.length > 0){content.removeChild(childs[childs.length-1]);deleteSpan();}}$('#wrap').css({'left':'100px'});var wrap = document.getElementById('wrap');wrap.style.left = '100px';$('#banner').hide();document.getElementById('banner').style.display = 'none';$('#banner').show();document.getElementById('banner').style.display = 'block';$('#people').addClass('people_run2');document.getElementById("people").classList.add('people_run2');$('#people').removeClass('people_run1');document.getElementById("people").classList.remove('people_run1');$('#number').text(1);document.getElementById('number').innerHTML = 1;$.ajax({ type: "POST", url: 'run.php', data: 's='+last_step, dataType:"JSON", timeout: 2000, success: function(data){ //处理回调 } }); //1.创建XMLHTTPRequest对象 var xmlhttp; if (window.XMLHttpRequest) { //IE7+, Firefox, Chrome, Opera, Safari xmlhttp = new XMLHttpRequest; //针对某些特定版本的mozillar浏览器的bug进行修正 if (xmlhttp.overrideMimeType) { xmlhttp.overrideMimeType('text/xml'); }; } else if (window.ActiveXObject){ //IE6, IE5 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }; if(xmlhttp.upload){ //2.回调函数 //onreadystatechange是每次 readyState 属性改变的时候调用的事件句柄函数 xmlhttp.onreadystatechange = function(e){ if(xmlhttp.readyState==4){ if(xmlhttp.status==200){ var json = eval('(' + xmlhttp.responseText + ')'); //处理回调 } } }; //3.设置连接信息 //初始化HTTP请求参数,但是并不发送请求。 //第一个参数连接方式,第二是url地址,第三个true是异步连接,默认是异步 //使用post方式发送数据 xmlhttp.open("POST","/run.php",true); //4.发送数据,开始和服务器进行交互 //发送 HTTP 请求,使用传递给 open() 方法的参数,以及传递给该方法的可选请求中如果true, send这句话会立即执行 //如果是false(同步),send会在服务器数据回来才执行 //get方法在send中不需要内容 var formdata = new FormData(); formdata.append("s", last_step); xmlhttp.send(formdata); }$('btn').bind({'touchstart':function(){}});document.getElementById("btn").ontouchstart = function(){};声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了jQuery插件jquery-barcode实现条码打印的方法。分享给大家供大家参考,具体如下:这是一个纯js的jQuery插件,项目地址:htt
先给大家展示效果图如下所示:使用方法:首先在head区引入jquery.js,jquery-ui.js,fullPage.js以及样式文件jquery.full
1、首先到jQuery官网下载js库,网址为http://jquery.com/2、建立一个jQuery示例的项目。3、将js库放到jQuery示例的项目中。4
刚刚开始接触JQuery的时候,下载来的文件包括jquery.vsdoc.js,jquery.min.js和jquery.js对于各个文件的作用以及该引入哪个包
一个轻量级的cookie插件,可以读取、写入、删除cookie。jquery.cookie.js的配置首先包含jQuery的库文件,在后面包含jquery.co