1

このページのチェックボックスをオンにすることができません。

<html>
  <body>
    <form name="f">
      <input type="checkbox" name="vehicle" value="Bike" /> 1<br /></li>
    </form>
  </body>
</html>

私のpopup.jsは以下のとおりです。

function click(e) {
  chrome.tabs.executeScript(null,
      {code:"document.body.f.vehicle.checked='true'"});
  window.close();
}

document.addEventListener('DOMContentLoaded', function () {
  var divs = document.querySelectorAll('div');
  for (var i = 0; i < divs.length; i++) {
    divs[i].addEventListener('click', click);
  }
});

コンソールログで、次のエラーが発生し続けます。Uncaught TypeError:undefinedのプロパティ'vehicle'を読み取ることができません。

私のpopup.htmlは以下のとおりです。

<!doctype html>
<html>
  <head>
    <title>Set Page Color Popup</title>
    <style>
    body {
      overflow: hidden;
      margin: 0px;
      padding: 0px;
      background: white;
    }

    div:first-child {
      margin-top: 0px;
    }

    div {
      cursor: pointer;
      text-align: center;
      padding: 1px 3px;
      font-family: sans-serif;
      font-size: 0.8em;
      width: 100px;
      margin-top: 1px;
      background: #cccccc;
    }
    div:hover {
      background: #aaaaaa;
    }
    </style>
    <script src="popup.js"></script>
  </head>
  <body>
    <div id="1">1</div>
  </body>
</html>

どんな助けでもいただければ幸いです。

4

1 に答える 1

0

こんなはずなのに、

document.f.vehicle.checked='true';

http://jsfiddle.net/PnXsE/

于 2012-04-29T08:46:51.347 に答える