点击按钮文字变成input框,点击保存变成文字的实

编辑: admin 分类: html 发布时间: 2022-01-05 来源:互联网

点击按钮文字变成input框,点击保存变成文字的实现代码

XML/HTML Code复制内容到剪贴板
  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3. <head>  
  4.   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
  5.   <meta charset="utf-8">  
  6.   <title>点击按钮文字变成input框,点击保存变成文字</title>  
  7.   <style type="text/css">  
  8.   table{ text-align: center; font-size: 14px;}   
  9.   table>thead>tr>th{ font-weight: normal;}   
  10.   .text-right{ padding-right:73px; text-align: right;}   
  11.   .text{ width: 50px; height: 30px; border: 1px solid #ddd; text-align: center;}   
  12.   </style>  
  13.   <script type="text/javascript" src="js/jquery.min.js"></script>  
  14. </head>  
  15.   
  16. <body>  
  17.   <table>  
  18.     <thead>  
  19.       <tr>  
  20.         <th width="400">品名</th>  
  21.         <th width="200">件数</th>  
  22.       </tr>  
  23.     </thead>  
  24.     <tbody>  
  25. 【文章出处http://www.1234xp.com/yz.html 欢迎转载】
  26.       <tr height="50">  
  27.         <td>iPhone6s</td>  
  28.         <td class="edit">2</td>  
  29.       </tr>  
  30.       <tr height="50">  
  31.         <td>小米5</td>  
  32.         <td class="edit">5</td>  
  33.       </tr>  
  34.     </tbody>  
  35.     <tfoot>  
  36.       <tr>  
  37.         <td colspan="2" class="text-right">  
  38.           <button type="button" class="btn" onclick="change(this)">修改</button>  
  39.         </td>  
  40.       </tr>  
  41.     </tfoot>  
  42.   </table>  
  43.   
  44. <script type="text/javascript">  
  45. function change(obj){   
  46.   var xg=$(obj).html();   
  47.   if(xg=='修改'){   
  48.     $('.edit').each(function(){   
  49.       var old=$(this).html();   
  50.       $(this).html("<input type='text' name='editname' class='text' value="+old+" >");   
  51.     })   
  52.     $(obj).html('保存');   
  53.   }else if(xg=='保存'){   
  54.     $('input[name=editname]').each(function(){   
  55.       var old=$(this).html();   
  56.       var newfont=$(this).parent('td').parent('tr').children().find('input').val();   
  57.       $(this).parent('td').html(newfont);   
  58.     })   
  59.     $(obj).html('修改');   
  60.   }   
  61. }   
  62. </script>  
  63.   
  64.   
  65.   
  66. </body>  
  67. </html>  

以上这篇点击按钮文字变成input框,点击保存变成文字的实现代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持海外IDC网。

原文地址:http://www.cnblogs.com/yuxiaoqi912/p/5470354.html