• html点击按钮动态添加input文本框


    html
    <div id="org"></div> //注意:id不能写在button上,js获取不到button的id(可能是我们公司的框架的原因)
    <input type="button" onclick="add1();" value="添加" />
    script <script type="text/javascript"> function add1(){ var input1 = document.createElement('input'); input1.setAttribute('type', 'text'); input1.setAttribute('name', 'organizers[]'); input1.setAttribute('class', 'git'); var btn1 = document.getElementById("org"); btn1.insertBefore(input1,null); } </script>

    推荐一个PHP框架: SummerPHP

  • 相关阅读:
    2018ddctf wp
    装饰器
    python作用域
    闭包
    迭代器
    ord() expected string of length 1, but int found
    pygm2安装问题
    elf逆向入门
    【POJ
    【POJ
  • 原文地址:https://www.cnblogs.com/iLoveMyD/p/2766263.html
Copyright © 2020-2023  润新知