1.新浪定位
<script src="http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js"></script> //获取当前城市 var pName = remote_ip_info.city
2.弹出遮罩后禁止页面页面滑动
$("body").height($(window).height()).css({
    "overflow-y": "hidden"
});
$("body").height($(window).height()).css({
    "overflow-y": "auto"
});
$(‘#upAimg‘).bind("touchmove", function (e) {
    e.preventDefault();});
3.透明色 transparent
4.当前网页从哪里链接来的 document.referrer
原文:http://www.cnblogs.com/jrg-Archer/p/7156787.html