我注意到用户滚动页面时没有更新脚本或样式。不幸的是,当Chrome Android隐藏地址栏时,会导致position: fixed
和top: 0
的菜单跳转。
那么,滚动时有没有办法强制进行CSS更新?
或者有没有办法让position: fixed
,top: 0
阻止在同一高度?
“背景......”主题的解决方案对我不起作用。我的问题与众不同 - Chrome Android不希望在用户滚动页面时更新页面。
答案 0 :(得分:0)
也许通过调整大小强制重绘一次?
<?php
header('Content-type:application/json');
$con = mysqli_connect('localhost','root','','dbname');
if(isset($_POST['submit']))
{
$artist = $_POST['artist'];
$select = mysqli_query($con, "SELECT * FROM tblname WHERE artistName = ". $artist);
$rows = array();
while($row = mysqli_fetch_array($select))
{
$rows[] = $row;
}
echo json_encode($rows);
};
?>
请查看this以获取更多可能的解决方案。