通过自动滚动将php链接中的变量传递给另一个页面

时间:2016-05-15 20:05:35

标签: php html variables scroll

并提前感谢你在这里的出色工作,我需要一些编码的帮助,我有一个网页,我显示一个mysql表的记录列表,当你点击它时带有一个超链接创建一个变量像world.php?id = 1& xx = 1050& yy = 300所以当用户点击它时,他会转到下一页并向下滚动到x和y,在网络浏览器中工作正常,但在移动设备中不能正常工作。你能帮助我吗?页面world.php有 )"> 这是我使用

的代码
PagesEngine::PageTemplateA

2 个答案:

答案 0 :(得分:0)

你能做这样的事吗?

<a href="world.php#row5">Row 5</a>

并在world.php文件中创建链接。

<table>
<tr id="row1"><td><h2>Row 1</h2></td></tr>
<tr id="row2"><td><h2>Row 2</h2></td></tr>
<tr id="row3"><td><h2>Row 3</h2></td></tr>
<tr id="row4"><td><h2>Row 4</h2></td></tr>
<tr id="row5"><td><h2>Row 5</h2></td></tr>
</table>

答案 1 :(得分:0)

使用以下链接:world.php?x = 345&amp; y = 200滚动到该位置。

<?php

if(isset($_GET["x"]) && isset($_GET["y"])) { 

$x = $_GET["x"];
$y = $_GET["y"];

}

?>

<!DOCTYPE html>
<html>
<head>
<title>World Map</title>
<script>
  function scrollWin() {
    window.scrollTo(<?php echo $x.",".$y; ?>);
  }
</script>
</head>
<body onload="scrollWin()">

<img src="https://upload.wikimedia.org/wikipedia/commons/e/e2/Geoffroy's_Cat.jpg" />

</body>
</html>

这只是一个让你入门的例子。