02 2018 档案

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