获取警报的价值并发布到php

时间:2013-08-26 06:19:16

标签: php javascript

我在下面有这个代码,如果我点击链接,会出现警告(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> 

2 个答案:

答案 0 :(得分:0)

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

$href = $_POST['href'];

答案 1 :(得分:0)

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

$linkhref = $_POST['href'];