*******************************
/*去掉手机滑动默认行为*/
$('body').on('touchmove', function (event) { event.preventDefault();});*******************************
1、jquery mobile 把元素插到BODY后的方法:
$('body').append($(".mydialogbox"));
2.
//点击除内容块以外的地方,弹框消失 event.stopPropagation();
$(".fP-box").click(function(){ event.stopPropagation(); $(".fP-boxbtn").show(); }) $(".fP-boxbtn input").click(function(){ $(".fP-boxbtn").hide(); }) $('html').click(function(){ $(".fP-boxbtn").hide(); });