查看表格的发布数据

时间:2015-12-31 16:29:01

标签: javascript google-chrome-extension http-post

我正在制作镀铬扩展程序以填充表单。

当用户点击表单发送按钮时,我需要读取POST请求。 可能吗? 我找不到任何方法,只能找到onBeforeRequest,但在这个链接中它说这是一个铬问题。

https://code.google.com/p/chromium/issues/detail?id=91191

1 个答案:

答案 0 :(得分:0)

在最简单的形式中,它看起来像这样。应该足以让你入门。

 <form name="thisform" id="thisform" action="submissionpage.php" method="POST">
  <input type="text" value="some value" id="first" />
  <input type="text" value="some value" id="second" />
  <input type="button" onclick="javascript:readValues()" value="see values" />
</form>


    function readValues() {
  var firstValue = document.getElementById("first").value;
  var secondValue = document.getElementById("second").value;

  alert("First:" + firstValue + "\nSecond:" + secondValue);

    var messageIs="";
    if (messageIs=="") {
            document.getElementById("thisform").submit(); 
        }else{
            alert(messageIs);
        }
}