将jQuery变量记忆成php变量

时间:2014-12-13 16:07:29

标签: php jquery

我有一个包含jQuery脚本的php脚本:

<?php
echo "<img class='PrevIMG' onclick='ShowURL(event)' src= 'http://imageURL'/>
         <script>
            function ShowURL(event){
                var im = event.target.src;
                alert(im);
            }
         </script>"
?>

当我点击它时,我用php回显一个图像和一个jQuery脚本,并将图像的URL记录到im jQuery变量中。 我想将im变量记忆成一个php变量,以便我可以POST / GET它。

0 个答案:

没有答案