...
|
...
|
@@ -99,7 +99,38 @@ |
|
|
popup_switch = true
|
|
|
}
|
|
|
}
|
|
|
|
|
|
//软件盘弹出时不让下面的弹起
|
|
|
var flag = false;
|
|
|
|
|
|
$("input").focus(function(){
|
|
|
|
|
|
flag = true;
|
|
|
|
|
|
});
|
|
|
|
|
|
window.onresize = function(){
|
|
|
|
|
|
if(flag){
|
|
|
|
|
|
$(".bottom_icon position_a").css({"position":"initial"});
|
|
|
|
|
|
flag = false;
|
|
|
|
|
|
}else {
|
|
|
|
|
|
$(".bottom_icon position_a").css({"position":"fixed"});
|
|
|
|
|
|
if(document.activeElement.id == "keyword"){
|
|
|
|
|
|
flag = true;
|
|
|
|
|
|
};
|
|
|
|
|
|
};
|
|
|
|
|
|
};
|
|
|
</script>
|
|
|
</body>
|
|
|
|
|
|
</html> |
|
|
\ No newline at end of file |
|
|
</html> |
...
|
...
|
|