首页 > 代码库 > Js 添加动态修改id
Js 添加动态修改id
//HTML代码 <table id="templateTable" > <tr> <td id="oneTd" > <div class="control-group"> <label class="control-label required"> <span class="help-inline"><font color="red">*</font> </span>房间类型: </label> <div class="controls"> <input type="text" name="roomType" id="roomType1" required="required" onblur="quchong(1)"/> </div> </div> </tr> </table>
//js <script> function addTr() { m = templateTable.rows[0].cells.length n = m + 1; var trHtml = $("#templateTable1 tr :first").html(); trHtml = trHtml.replace(id="roomType1",id="roomType"+n); trHtml = trHtml.replace(onblur="quchong(1)",onblur="quchong"+"("+n+")"); $("#templateTable tr").append(trHtml); } </script>
Js 添加动态修改id
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。