02 2018 档案
摘要:``` var xmlhttp = new XMLHttpRequest(); xmlhttp.open("GET","connectDatabase.php",true); xmlhttp.send(); xmlhttp.onreadystatechange= function(){ if(xmlhttp.readyState ==4 && xmlhttp.status ==200...
阅读全文
摘要:function updateProgress(){ var div = document.querySelector("div"); div.style.width = (parseInt(div.style.width,10)+1)+"%"; if(div.style.width !="100%
阅读全文
摘要:this is a demo page to create jquery plugins ! console.log($); ;(function($){ // 设置默认值 var defaults = { background:' ccc', width:'100px', height:'100p
阅读全文
摘要:初识js cookie cookie可以让你存储用户的信息在网页上 创建一个cookie document.cookie="username=abc"; 注意里面的name和value是不需要加引号的 可以设置一个过期时间(采用utc时间),默认的情况下,浏览器关闭之后就会删除cookie,因为他们
阅读全文

浙公网安备 33010602011771号