2

我想要一个 Chrome 扩展程序,它将继续将用户访问的 URL 插入 MySQL 表中。

背景.html

<script>
var myURL = "nourl";

chrome.tabs.getSelected(null, function(tab) {
  myURL = tab.url;
});

dataparam = "url="+myURL;

    $.ajax({
        type: "POST",
        url: "http://domainname.com/insertdb.php",
        data: dataparam,
        error:function() {
                alert("sorry")
        },
        success: function(html) {
            alert(html);
        }
    });


</script>

插入数据库.php

<?php
$val=$_REQUEST['url'];

// Inserting $val in the db code goes here.

?>

我是 javascript 新手,这段代码似乎不起作用。任何帮助将不胜感激。提前非常感谢。

4

1 回答 1

0

您需要获得跨域权限。

http://developer.chrome.com/extensions/xhr.html

于 2013-02-08T18:00:30.003 回答