jQuery實現(xiàn)點擊按鈕文字變成input框點擊保存變成文字
來源:易賢網(wǎng) 閱讀:1302 次 日期:2016-07-02 11:28:31
溫馨提示:易賢網(wǎng)小編為您整理了“jQuery實現(xiàn)點擊按鈕文字變成input框點擊保存變成文字”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了jQuery實現(xiàn)點擊按鈕文字變成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">件數(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>

更多信息請查看網(wǎng)絡編程

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)