<div class="tabs_content tabs_content_hide">
<p><em>Input regulation example for Protien :</em></p>
<table id='protien_table'>
</table>
<div class="item_button">
<input type="button" value="Add" onclick="protien_addNew();">
<input type="button" value="Delete" onclick="protien_del();">
</div>
</div>
function protien_addNew()
{
var phospho_table = $('#protien_table');
for (i=1; i<=5; i++) {
var row = $("<tr></tr>");
var td = $("<td></td>");
td.append($("<input type='checkbox' name='protien' value='New'> ID: <input type='text' name='uptid'/> Peptide: <input type='text' name='pepseq'/>"));
row.append(td);
phospho_table.append(row);
}
}
function protien_del()
{
var checked = $("input[type='checkbox'][name='protien']");
$(checked).each(function(){
if($(this).attr("checked") == 'checked')
{
$(this).parent().parent().remove();
}
});
}
共同学习,写下你的评论
评论加载中...
作者其他优质文章