我不知道这段代码有什么问题,但它无法正常工作。我将表单方法更改为发布并获取但没有任何效果。我想将此表单提交给DB。
popup.html:
<form id='myForm' action='savenewfeed.php' method="get">
URL:
<input class= 'vals' type="text" name="feed" id="url">
<br>
Title :
<input class= 'vals' type="text" name="title" id="title">
<br>
Channel:
<select class= 'vals' name='pid'>
<option value="2">Big</option>
<option value="3">H</option>
<option value="4">T</option>
</select>
<button id='sbmt'>Submit</button>
</form>
manifest:
{
"manifest_version": 2,
"name": "One-click Kittens",
"description": "This extension gets current url of browser",
"version": "1.0",
"permissions": [
"tabs",
"cookies",
"http://*/*",
"http://*/",
"https://*/*"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
}
}
popup.js:
function myAlert(){
document.getElementById('myForm').submit();
}
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('sbmt').addEventListener('click', myAlert);
});
当我点击按钮时,我的PHP代码出现在chrome扩展名中,而用于提交数据的php代码在简单的Web应用程序中完美运行。
答案 0 :(得分:1)
将表单操作更改为提交脚本的绝对网址。不要使用相对路径。例如
<form id='myForm' action='http://localhost.com/mydir/savenewfeed.php' method="get">