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

<!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">件数</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>

时间: 2024-10-12 04:47:06

点击按钮文字变成input框,点击保存变成文字的相关文章

jquery实现点击按钮弹出层和点击空白处隐藏层

昨天做项目遇到一个问题,和大家分享下,jquery实现点击按钮弹出层和点击空白处隐藏层的问题 if($('.autoBtn').length){                $('.autoBtn').find('.assess').unbind().bind('click',function(event){                    //取消事件冒泡                      event.stopPropagation(); if($('.abtnBox').is

问题1:默认div隐藏,点击按钮时出现,再点击时隐藏。

例:默认div隐藏,点击按钮时出现,再点击时隐藏. <a href="#" onclick="f('ycbc')"; >控制按钮</a> <div id="ycbc" style="display:none">隐藏的内容</div> 解决方法一:javascript 利用onclick事件调用f('ycbc')函数,参数为隐藏的内容div的id,在函数加入钮时出现,再点击时隐藏代

清除input框对浏览器保存的用户名和密码自动填充问题

清除input框对浏览器保存的用户名和密码自动填充问题: type类型写如下写法,聚焦的时候type类型为"password" <input ng-model="getpwd" name="password" type="text"  type="password" autocomplete="off"  onfocus="this.type='password'&quo

js构建函数,点击按钮显示div,再点击按钮或其他区域,隐藏div

这只是一个例子,先看看效果: html代码: <nav> <span class="nav_logo"></span> <h1>云蚂客首页</h1> <button class="nav_btn"></button> <ul class="menu"> <li><a href="#">首页</a>

JQuery实现点击按钮动态添加input文本框,限制个数

<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title></title> <script src="jquery-min.js" type="text/javascript"></script><script type=&

去掉input框点击时的默认颜色

1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>文本框鼠标点中时边框不变色</title> 6 </head> 7 <body> 8 <input type="text" /> 9 </body> 10 </html> 360安全浏览器 360极

点击按钮变成灰色不可再次点击

很多时候,当我们点击提交按钮,如果因为执行的程序太慢,或是网络问题,就会一直处于提交状态. 不了解的人,还以为是没有提交成功,于是就会一直点提交.提交.提交-- 这样就会造成多次提交,而产生重复记录. 那么要如何才能防重复提交呢? 小编的做法就是,使用js来控制. 当点击提交后将按钮变成灰色,并将其value值改为一个提示信息,比如"正在提交中,请稍等..." 下面我们来看看详细代码. <style> input.btn_add{ background:#1abc9c; f

点击按钮显示隐藏DIV,点击DIV外面隐藏DIV

注意:此方法对touch事件不行,因为stopPropagation并不能阻止touchend的冒泡 <style type="text/css"> body { background-color:#999999; } #myDiv { background-color:#FFFFFF; width:250px; height:250px; display:none; } </style> <body> <input id="btn&

点击按钮内容显示,再次点击隐藏

html代码: <div class="box">领取红包</div> <p class="main on">恭喜您获得300元红包抵用券</p> css: .box{width: 100px;height: 30px;background: #FA6A2F;text-align: center;line-height: 30px;border-radius: 10px;cursor: pointer;color: #