JQuery input 변경 표시

Jmnote (토론 | 기여)님의 2017년 7월 10일 (월) 17:54 판 (→‎개요)

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 }}