jquery实用方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery实用方法相关的知识,希望对你有一定的参考价值。
$(document).bind("click",function(e){
//class为phone-show的是菜单,id为go_phone的是打开菜单的按钮
if($(e.target).closest(".phone-show").length == 0 && $(e.target).closest("#go_phone").length == 0){
//点击phone-show之外的区域且id不是go_phone,则执行下面的程序
web.utility.hideLayerModal();
$(document.body).css({
"overflow-y":"scroll"
});
}
});
//class为phone-show的是菜单,id为go_phone的是打开菜单的按钮
if($(e.target).closest(".phone-show").length == 0 && $(e.target).closest("#go_phone").length == 0){
//点击phone-show之外的区域且id不是go_phone,则执行下面的程序
web.utility.hideLayerModal();
$(document.body).css({
"overflow-y":"scroll"
});
}
});
$(‘.article-title‘).bind(‘input propertychange‘,function(){ //实时监听input输入内容,并作出相应处理
var title = $(this).val();
$(‘.contribute-header h1‘).html(title);
});
var title = $(this).val();
$(‘.contribute-header h1‘).html(title);
});
以上是关于jquery实用方法的主要内容,如果未能解决你的问题,请参考以下文章
Jquery ajax异步传值的两个实用的方法,你看后肯定会用第二个