0
我正在開發一個Chrome擴展,它將檢查在後臺選項卡中打開了哪個網站,然後解析它。但是我不知道爲什麼表單中的提交按鈕不起作用,即使這是在我開發的一種類似的擴展中工作。提交按鈕在Chrome擴展中不起作用
下面是HTML代碼
<html>
<head>
<script src="fetcher.js"></script>
</head>
<body style="min-width:250px; ">
<form name="login" action="http://localhost/CD/worker.php" style="padding:15%" method="GET">
<fieldset>
<legend>CD</legend>
<div id="tag"></div>
<p>
<label for="name"></label>
<br />
<input type="hidden" id="name" name="val" class="text" size="20" />
</p>
<p>
<button type="submit" class="button positive">
<img alt="ok" src=
"/tick.png" />
Login
</button>
</p>
</fieldset>
</form>
</body>
,這裏是我的JavaScript文件
window.addEventListener("load", windowLoaded, false);
function windowLoaded() {
chrome.tabs.getSelected(null, function(tab) {
//doing stuff with the url
var url=tab.url;
if(url.indexOf(".com")>0)
var n=url.split(".com");
else if(url.indexOf(".co.in")>0)
var n=url.split(".co.in");
else
var n=url.split(".in");
var m=n[0].split(".");
n=m[m.length-1].split("://");
var qstr=n[0];
document.getElementById("tag").innerHTML="Get Coupons for "+qstr;
document.getElementsByName("val").value=""+qstr;
});
}
PHP文件
<?php
$name=$_GET['val'];
echo $name;
?>
是'check()'defined? –
Off topic topic error:style =「padding = 15%」 – isherwood
@Jamie,是的,我很抱歉!我正在測試一些東西。我編輯了代碼。 –