登录  /  注册

点击按钮文字变成input框,点击保存变成文字的实现代码_HTML/Xhtml_网页制作

php中文网
发布: 2016-05-24 09:05:45
原创
1561人浏览过

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

XML/HTML Code复制内容到剪贴板
  1. nbsp;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.       tr height="50">  
  26.         td>iPhone6std>  
  27.         td class="edit">2td>  
  28.       tr>  
  29.       tr height="50">  
  30.         td>小米5td>  
  31.         td class="edit">5td>  
  32.       tr>  
  33.     tbody>  
  34.     tfoot>  
  35.       tr>  
  36.         td colspan="2" class="text-right">  
  37.           button type="button" class="btn" onclick="change(this)">修改button>  
  38.         td>  
  39.       tr>  
  40.     tfoot>  
  41.   table>  
  42.   
  43. script type="text/javascript">  
  44. function change(obj){   
  45.   var xg=$(obj).html();   
  46.   if(xg=='修改'){   
  47.     $('.edit').each(function(){   
  48.       var old=$(this).html();   
  49.       $(this).html("input type='text' name='editname' class='text' value="+old+" >");   
  50.     })   
  51.     $(obj).html('保存');   
  52.   }else if(xg=='保存'){   
  53.     $('input[name=editname]').each(function(){   
  54.       var old=$(this).html();   
  55.       var newfont=$(this).parent('td').parent('tr').children().find('input').val();   
  56.       $(this).parent('td').html(newfont);   
  57.     })   
  58.     $(obj).html('修改');   
  59.   }   
  60. }   
  61. script>  
  62.   
  63.   
  64.   
  65. body>  
  66. html>  

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

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

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号