我有一个javascript
文件pet.js
。我想在test.php
. 但我不能。
我pet.js
的就像
$('#pmWorkOrderDetailsPage').live('pageshow', function(event) {
var id = getUrlVars()["id"];
$.get("test.php", { test1: id } );
$.getJSON('pmworkorderdetails.php?id='+id, displaypmWODetails);
});
function displaypmWODetails(data) {
..............code..........
}
我test.php
的就像
<?php
$ms = $_GET["test1"];
echo $ms;
?>
但它不起作用。我尝试了Ajax
和post
方法。
如果我可以将变量值存储在 test.php 中的会话中,那将是最好的。
提前感谢您的帮助。