首页 > 代码库 > javascript随笔
javascript随笔
JS日期控件
http://www.my97.net/dp/demo/index.htm
jquery 1.10 版本后,动态绑定事件 .live 无效,改成用.on了
http://stackoverflow.com/questions/14354040/jquery-1-9-live-is-not-a-function
$(selector).live(‘click’,function)
$(parent).on(‘click’,selector,function)
dom 冒泡
<div class="a">
<div class="b">
<a class="c" href="http://www.mamicode.com/#">test</a>
</div>
</div>
$(‘.a‘).click(function(){alert("a");});
$(‘.b‘).click(function(){alert("b");});
$(‘.c‘).click(function(event,data){
console.log(data);
event.stopPropagation();
alert("c");}
);
jstree
http://johntang.github.io/JsTree/_demo/index.html#integrate_demo
window.parent.frame.location.href = http://www.mamicode.com/“”;
-----------------------------------------------------
jQuery API明确说明,1.6+的jQuery要用prop,尤其是checkBox的checked的属性的判断,即
$("input[type=‘checkbox‘]").prop("checked");
$("input[type=‘checkbox‘]").prop("disabled", false);$("input[type=‘checkbox‘]").prop("checked", true);
$(window).resize(function(){
//process here
console.log("------------");
console.log($(window).height()); //浏览器当前窗口可视区域高度
console.log($(document).height()); //浏览器当前窗口文档的高度
console.log($(document.body).height());//浏览器当前窗口文档body的高度
console.log($(document.body).outerHeight(true));//浏览器当前窗口文档body的总高度 包括border padding margin
});