"JQuery input 변경 표시"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
2번째 줄: 2번째 줄:
;jQuery input 변경 표시
;jQuery input 변경 표시


<source lang='html'>
<syntaxhighlight lang='html'>
<table>
<table>
   <tr>
   <tr>
26번째 줄: 26번째 줄:
})
})
</script>
</script>
</source>
</syntaxhighlight>
<jsfiddle height='250'>k9xdzasu</jsfiddle>
<jsfiddle height='250'>k9xdzasu</jsfiddle>



2020년 11월 2일 (월) 02:53 기준 최신판

1 개요[ | ]

jQuery input 변경 표시
<table>
  <tr>
    <td></td>
    <td><input class="myinput" type="text" data-orig="헬로" value="헬로"></td>
  </tr>
  <tr>
    <td></td>
    <td><input class="myinput" type="text" data-orig="월드" value="월드"></td>
  </tr>
  <tr>
    <td></td>
    <td><input class="myinput" type="text" data-orig="Hello" value="Hello"></td>
  </tr>
</table>
<button>저장하기</button>

<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(".myinput").keyup(function() {
  if( $(this).val() == $(this).data("orig") ) $(this).css("background", "white");
  else $(this).css("background", "yellow");
})
</script>

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}