XML/HTML Code
1.
2.
3.
4.
5.
6.
7.
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.
13.
14.
15.
16.
17.
品名 | 件数 |
---|---|
iPhone6s | 2 |
小米5 | 5 |
37. 38. |
42.
43.
44.function change(obj){
45. var xg=$(obj).html();
46. if(xg=='修改'){
47. $('.edit').each(function(){
48. var old=$(this).html();
49. $(this).html("");
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.
62.
63.
64.
65.
66.
以上这篇点击按钮文字变成input框,点击保存变成文字的实现代码就是小编分享给大家的全部内容了,希望能给大家一个参考。