如何完成點擊按鈕文字變成input框,點擊保存變成文字的完成的效果
發(fā)表時間:2023-09-22 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這次給大家?guī)碓鯓訉崿F(xiàn)點擊按鈕文字變成input框,點擊保存變成文字的實現(xiàn)的效果,實現(xiàn)實現(xiàn)點擊按鈕文字變成input框,點擊保存變成文字效果的注意事項有哪些,下面就是實戰(zhàn)案例,一起來看一下。<!DOCTYPE html> <html lang="en">...
這次給大家?guī)碓鯓訉崿F(xiàn)點擊按鈕文字變成input框,點擊保存變成文字的實現(xiàn)的效果,實現(xiàn)實現(xiàn)點擊按鈕文字變成input框,點擊保存變成文字效果的注意事項有哪些,下面就是實戰(zhàn)案例,一起來看一下。
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8">
<title>點擊按鈕文字變成input框,點擊保存變成文字</title>
<style type="text/css">
table{ text-align: center; font-size: 14px;}
table>thead>tr>th{ font-weight: normal;}
.text-right{ padding-right:73px; text-align: right;}
.text{ width: 50px; height: 30px; border: 1px solid #ddd; text-align: center;}
</style>
<script type="text/javascript" src="js/jquery.min.js"></script>
</head>
<body>
<table>
<thead>
<tr>
<th width="400">品名</th>
<th width="200">件數(shù)</th>
</tr>
</thead>
<tbody>
<tr height="50">
<td>iPhone6s</td>
<td class="edit">2</td>
</tr>
<tr height="50">
<td>小米5</td>
<td class="edit">5</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2" class="text-right">
<button type="button" class="btn" onclick="change(this)">修改</button>
</td>
</tr>
</tfoot>
</table>
<script type="text/javascript">
function change(obj){
var xg=$(obj).html();
if(xg=='修改'){
$('.edit').each(function(){
var old=$(this).html();
$(this).html("<input type='text' name='editname' class='text' value="+old+" >");
})
$(obj).html('保存');
}else if(xg=='保存'){
$('input[name=editname]').each(function(){
var old=$(this).html();
var newfont=$(this).parent('td').parent('tr').children().find('input').val();
$(this).parent('td').html(newfont);
})
$(obj).html('修改');
}
}
</script>
</body>
</html>
相信看了這些案例你已經(jīng)掌握了方法,更多精彩請關(guān)注php中文網(wǎng)其它相關(guān)文章!
相關(guān)閱讀:
怎樣讓移動端的網(wǎng)頁內(nèi)容自適應
table表格中的內(nèi)容溢出應該如何處理
html關(guān)于PHP你必須知道的重要知識點
以上就是怎樣實現(xiàn)點擊按鈕文字變成input框,點擊保存變成文字的實現(xiàn)的效果的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學科中所使用的生產(chǎn)和維護的網(wǎng)站。