怎么完成點(diǎn)擊按鈕文字變成input框,點(diǎn)擊保存變成文字的完成的效果
發(fā)表時(shí)間:2024-05-07 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這次給大家?guī)?lái)怎樣實(shí)現(xiàn)點(diǎn)擊按鈕文字變成input框,點(diǎn)擊保存變成文字的實(shí)現(xiàn)的效果,實(shí)現(xiàn)實(shí)現(xiàn)點(diǎn)擊按鈕文字變成input框,點(diǎn)擊保存變成文字效果的注意事項(xiàng)有哪些,下面就是實(shí)戰(zhàn)案例,一起來(lái)看一下。<!DOCTYPE html> <html lang="en">...
這次給大家?guī)?lái)怎樣實(shí)現(xiàn)點(diǎn)擊按鈕文字變成input框,點(diǎn)擊保存變成文字的實(shí)現(xiàn)的效果,實(shí)現(xiàn)實(shí)現(xiàn)點(diǎn)擊按鈕文字變成input框,點(diǎn)擊保存變成文字效果的注意事項(xiàng)有哪些,下面就是實(shí)戰(zhàn)案例,一起來(lái)看一下。
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8">
<title>點(diǎn)擊按鈕文字變成input框,點(diǎn)擊保存變成文字</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)掌握了方法,更多精彩請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
相關(guān)閱讀:
怎樣讓移動(dòng)端的網(wǎng)頁(yè)內(nèi)容自適應(yīng)
table表格中的內(nèi)容溢出應(yīng)該如何處理
html關(guān)于PHP你必須知道的重要知識(shí)點(diǎn)
以上就是怎樣實(shí)現(xiàn)點(diǎn)擊按鈕文字變成input框,點(diǎn)擊保存變成文字的實(shí)現(xiàn)的效果的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語(yǔ),涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。