15

我按照我在网上找到的方式动态创建了一个按钮:

 Page = function(...) {
   ...
 };

 Page.prototype = {
   ...
   addButton : function() {
     var b = content.document.createElement('button');
     b.onclick = function() { alert('OnClick'); }
   },
   ...
 };

不幸的是,它不起作用并引发以下错误:

  Error: [Exception... "Component is not available"  nsresult: "0x80040111
  (NS_ERROR_NOT_AVAILABLE)"  location: "JS frame :: chrome://knowledgizer/content
  /knowledgizer.js :: <TOP_LEVEL> :: line 137"  data: no]
  Source File: chrome://browser/content/tabbrowser.xml Line: 434

setAttribute 工作的解决方案:

b.setAttribute("onClick", "alert('OnClick')");

但是,我想调用一个类方法(而不是警报),并且 b.onclick 语法在这方面看起来更好,我希望/认为。这个 onclick 是否区分大小写?因为如果我写

b.onClick = function() {alert("OnClick");} // notice the spelling onclick vs onClick

我没有收到上述错误,但它仍然无法正常工作,即我没有收到警报。我很感谢任何提示。

作为一个额外的问题:如何避免在单击按钮时重新加载当前页面?我只是喜欢调用一个方法而不是导致页面重新加载。

谢谢和最好的问候,

基督教

4

2 回答 2

51
var foo = function(){
  var button = document.createElement('button');
  button.innerHTML = 'click me';
  button.onclick = function(){
    alert('here be dragons');return false;
  };
  // where do we want to have the button to appear?
  // you can append it to another element just by doing something like
  // document.getElementById('foobutton').appendChild(button);
  document.body.appendChild(button);
};
于 2011-08-15T15:23:14.323 回答
1

这是一个带有输入属性的版本:

 <button onclick="myFun()">Add More</button>
    <script>
        function myFun() {
            var x = document.createElement("INPUT");
            x.setAttribute("type", "file");
            x.setAttribute("id", "file");
            document.body.appendChild(x);
            x.onchange = function () {
                hello();
            };
            btn.appendChild(t);
            document.body.appendChild(btn);
        }
        function hello() {
            window.alert("hello!");
        }
    </script>
于 2018-12-22T20:13:25.263 回答