我有 2 个文件,main.html
并且search.php
.
在main.html
页面内,有这段代码:
$("#results").load("search.php",queryString,function(response,status,xhr){
... some code here
})
在search.php
页面内,有这段代码:
$image_id=mysql_insert_id() // getting the last ID of the last query - works perfectly
我想要做的是将此变量回显到main.html
文件中,并将其存储在一个名为的 JS 变量im_id
中,我可以通过main.html
页面调用该变量。
我试着这样做
echo "<script type=\"text/javascript\">$im_id=".mysql_insert_id()."</script>";
但它根本不起作用。
我找到了一种解决方法,将内容存储在这样的文本框中
echo "<script type=\"text/javascript\">$(\"#textbox\").val(".$image_id.")</script>";
然后在 JScript 中,使用
$im_id=$("#textbox").val();
以及许多其他使用“中介”的方法,但没有直接设置变量的直接方法吗?
任何帮助,将不胜感激。