我在下面有这个代码,如果我点击链接,会出现警告(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>
答案 0 :(得分:0)
href: linkhref
中的$.post()
行是发布到sample.php
的数据,
在sample.php中,只需将其作为:
$href = $_POST['href'];
答案 1 :(得分:0)
在sample.php中,您可以像这样捕获href的值:
$linkhref = $_POST['href'];