php文件中的Javascript变量,并在同一个文件中使用它

时间:2014-11-26 09:40:11

标签: javascript php jquery

首先,抱歉,因为这个问题在SO中被多次询问过。但是我无法找到它与我合作。这就是我在这里发帖的原因。

我在文件末尾有以下脚本:

<script type="text/javascript">
$(document).ready(function(){
var pos = new google.maps.LatLng(position.coords.latitude,
                                   position.coords.longitude);
 });
 </script>

我想在那个php文件的顶部使用var pos

我试过这样的话:

<script type="text/javascript">
//this script at bottom
$(document).ready(function(){
var pos = new google.maps.LatLng(position.coords.latitude,
                                   position.coords.longitude);
 });
 </script>

<?php
//this part at the top of the file 
if (isset($_GET['coordinates'])) {
    echo $_GET['coordinates'];
}
//I have tried with $_POST['coordinates'] ..but still no Echo
?>

任何人都可以帮助我吗?

0 个答案:

没有答案