0

我不知道这段代码有什么问题,但它不起作用。我将表单方法更改为发布和获取,但没有任何效果。我想将此表格提交给 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 应用程序中完美运行。

4

1 回答 1

1

将表单操作更改为提交脚本的绝对 URL。不要使用相对路径。例如

<form id='myForm' action='http://localhost.com/mydir/savenewfeed.php' method="get">
于 2013-08-27T11:57:30.940 回答