熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java核心技術 >> 正文

JAVA高級:js動態創建控件的方法

2022-06-13   來源: Java核心技術 

  function createCellWithInputOnkeyup(inputTypeinputNameinputValuelistid) {

  //構造td節點withInput

  //alert(生成的id:+listid);

  var cell = documentcreateElement(td);

  cellsetAttribute(aligncenter);

  var input =documentcreateElement(< input style=textalign:right type=+inputType+ name=+inputName+ value=+inputValue+ onkeyup=CountYnse(+listid+)>);

  cellappendChild(input);

  //alert(cellinnerHTML);

  return cell;

  }


From:http://tw.wingwit.com/Article/program/Java/hx/201311/26353.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.