0

我在下面有这段代码,如果我点击链接,将出现警报(linkhref),我的问题是,如何在 php(sample.php)上发布(linkhref),如 $_post[''];

谢谢,

    <script language="javascript" type="text/javascript">
    $(document).ready(function()
    {
    $('.linklist').click(function(){    
    var linkhref=$(this).attr('href');
    alert (linkhref);
   $.post("sample.php", { href: linkhref } );

    });
    });
    </script> 

html:

< a href="files/my_file.zip" class="linklist" name="test">test  insert < /a> 
4

2 回答 2

0

href: linkhref您的行$.post()是发布到的数据sample.php,在 sample.php 中,只需将其获取为:

$href = $_POST['href'];
于 2013-08-26T06:22:38.973 回答
0

在 sample.php 中,您可以像这样捕获 href 的 post 值:

$linkhref = $_POST['href'];
于 2013-08-26T06:22:53.240 回答