熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

jquery動態增加text元素以及刪除文本內容實例代碼

2022-06-13   來源: JSP教程 

  這段代碼是通過jquery動態增加限定數額的text(本例為個) 以及清除文本內容用到了after()方法追加元素
<!以下為script代碼開始>

復制代碼 代碼如下:
<script>
$(document)ready(function(){
var spotMax = ;//限定添加text元素的總個數
var afterId = ;//要追加元素的id
var newId=;//新生成text的id
if($(table#vote)size() >= spotMax) {}
$("#btnAddOption")click(function(){
afterId++;
newId=afterId+;
addSpot(this spotMaxafterIdnewId);
});
});
//添加選項方法
function addSpot(obj smafterIdnewId) {
if($(trspot)size() < sm){
$(#vote_+afterId)after(
<tr id="vote_+newId+" class="spot"><th>+afterId+</th> +
<td><input type="text" id="txtInput_+afterId+" class="inputtext" value="" size="" name="names" /></td> +
</tr>);
$(":text[id^=txtInput_]")val("輸入文本");//給新增的文本賦予初始值
}
else{
alert("最多只能添加項投票!");
}
};
//重置選項
$("input#btnResetOption")click(function(){
$(":text[id^=txtInput_]")val("");//清空文本內容
});
</script>

  
<!以下為script代碼結束>
<!以下為html代碼塊開始>

復制代碼 代碼如下:
<form method=post id="updateForm" action="admin/vote/doVote">
<table cellpadding= cellspacing= width="%" class="table_form">
<tr>
<th width="">投票名稱</th>
<td>
<input type="text" id="txtName" name="name" class="inputtext" value="" size=""/>
</td>
</tr>
<tr>
<th width="">投票描述</th>
<td>
<textarea id="txtDescribe" class="inputtext" name="remark" cols="" ></textarea>
</td>
</tr>
<tr>
<th width="">開始時間</th>
<td>
<input type="text" id="dateMin" class="inputtext" value="" name="startDate" size="" readonly="readonly"/>
</td>
</tr>
<tr>
<th width="">結束時間</th>
<td>
<input type="text" id="dateMax" class="inputtext" name="endDate" size="" readonly="readonly"/>
</td>
</tr>
<tr>
<th width="">是否多選</th>
<td>
<input type="radio" id="txtEndTime" name="isSelect" value="" size=""/>單選
<input type="radio" id="txtEndTime" name="isSelect" value="" size=""/>多選
</td>
</tr>
<tr id="vote_">
<th width="">投票選項</th>
<td>
<input type="button" id="btnAddOption" name="btnAddOption" class="button" value="添加選項"/>
<input type="reset" id="btnResetOption" name="btnResetOption" class="button" value="重置選項"/>
</td>
</tr>
<tr id="save">
<th></th>
<td align="left">
<input type="submit" id="btnSave" name="btnSave" class="button" style="width:px" value="保存"/>
<input type="submit" id="btnClose" name="btnClose" class="button" style="width:px" value="取消"/>
</td>
</tr>
</table>
</form>

  
<!以下為html代碼塊開始>
以下是運行效果


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