我想要一个 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 新手,这段代码似乎不起作用。任何帮助将不胜感激。提前非常感谢。