这是你要找的那种东西吗?
在这里工作 jsFiddle
HTML:
<table id="mytable">
<tr>
<th>First Name</th>
<th>Last Name</th>
</tr>
<tr>
<td>
<input type="text" class="txt_input" id="fname" />
</td>
<td>
<input type="text" class="txt_input" id="lname" />
</td>
</tr>
</table>
<input type="button" id="edbutt" value="Allow Editing" />
<input type="button" id="svbutt" class="hidden" value="Save" />
jQuery/Javascript
$('.txt_input').prop("disabled", true);
$('#edbutt').click(function() {
$('.txt_input').prop("disabled", false);
$('#svbutt').removeClass('hidden');
$(this).addClass('hidden');
});
$('#svbutt').click(function() {
alert('We are saving now');
});
CSS:
.hidden{display:none;}