0

如何获取href的值并将其发布到mysql中?例如,我有这个:

<a href="test/test.doc" name="test">testing</a>

如何"test/test.doc"通过 php 或 javascript 获取并将其放入 mysql 表中?

非常感谢。

下面是我的脚本:

<script language="javascript" type="text/javascript">
$(document).ready(function()
{
$('.linktest').click(function(){    

var linkhref=$('a',this).attr('href');
$.post("testing.php", { href: linkhref } ); 

});
});
</script>

我的html:

<p><a href="test/test.doc" class="linktest" name="test">test  insert</a></p>

这是我的test.php:

if(empty($_POST['name']) || empty($_POST['href']) )
{
    $sql="INSERT INTO increment (name, href, count) VALUES ('$name','$href','$count' )";
    $result=mysql_query($sql,$db);
    $row=mysql_fetch_array($result);
    $count=$row['count'];
    $count+=1;   
}
4

1 回答 1

0

在 javascript 变量中,您可能具有值 test/test.doc。要将此值写入数据库,您可以对 php 文件执行异步 ajax-post 并提交您的 href-value。

// fire off the request to /test.php
request = $.ajax({
    url: "/test.php",
    type: "post",
    data: serializedData //your href-string
});

// callback handler that will be called on success
request.done(function (response, textStatus, jqXHR){
    // log a message to the console
    console.log("Hooray, it worked!");
});

// callback handler that will be called on failure
request.fail(function (jqXHR, textStatus, errorThrown){
    // log the error to the console
    console.error(
        "The following error occured: "+
        textStatus, errorThrown
    );
});

复制自:使用 PHP 的 jQuery Ajax POST 示例

于 2013-08-23T10:31:47.493 回答