Kent_Sun Kent_Sun
3年前
js判undefined | null
js判undefined|null判undefinedjavascriptvarexpundefined;if(typeof(exp)"undefined"){alert("undefined");}判nulljavascriptvarexpnull;if(exp&&typ
Stella981 Stella981
3年前
Bootstrap 结合 PHP ,做简单的登录以及注册界面及功能
登录实现HTML代码<divclass"container"<?phpif(isset($error_msg)):?<divclass"alertalertdanger"role"alert"<?phpecho$error_msg;?</div
Stella981 Stella981
3年前
JavaScript中的各种宽高总结
window和document首先我们来高清两个概念:   window和document的区别是什么?   window.location和document.location是一样吗?第一个问题:   Window对象表示浏览器中打开的窗口;window对象可以省略。比如alert()、window.alert(
Stella981 Stella981
3年前
JFinal使用笔记5
1、前台代码$.ajax({type:"POST",url:"/activity",dataType:"json",success:function(data){alert("success");conso
Stella981 Stella981
3年前
JQ判断div是否隐藏
 1.$("tanchuBg").css("display") 2.$("tanchuBg").is(":visible") 3.$("tanchuBg").is(":hidden") 例:if($("tanchuBg").is(":hidden")) {   alert("隐藏了")}if($("tanchu
Stella981 Stella981
3年前
JS 获取json key和value
varjson{"Type":"Coding","Height":100};for(varkeyinjson){alert(key); //Type,Heightalert(jsonkey);//Coding,100
Wesley13 Wesley13
3年前
JS弹出对话框的三种方式
JS弹出对话框的三种方式我们用到了alert()方法、prompt()方法、prompt()方法,都是在网页有一个弹出框,那么就让我们探究一下他们之间的区别:一、第一种:alert()方法<html<head<title编写html页面</title
Stella981 Stella981
3年前
IE9 console.log兼容性问题
问题描述昨天测试开始测试IE9兼容问题,突然提出很多 偶尔点击某个按钮无响应的bug。排查思路本来初步怀疑是IE9判定两次请求为重复请求 故不走网络导致的。但是经过排查实验 加上timestamp时间戳还是偶尔出现这样的bug。因此不得不在页面初步添加alert弹窗,方便监听到底哪一步出现了问题。最后发现alert走到
Wesley13 Wesley13
3年前
JSON笔记
一、1、  JSON.stringify(obj)将JSON转为字符串:      vara{"name":"tom","sex":"男","age":"24"};      varaToStrJSON.stringify(a);      alert(aToStr);//结果:{"na
Wesley13 Wesley13
3年前
Flex PopUpManager 弹出窗口居中
今天看到窗口居中弹出,我便想到了Alert,既然Alert每次都能居中弹出,为什么我们自定义的窗口不能居中弹出呢,所以,我查看了下Alert的show方法,放到我的代码中,果然也能居中弹出了,不论布局是如何设计的,下面是主要代码://自定义弹出的窗口大小vartitle:TitleWindownewTitleWindow();