JQuery input 변경 표시

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:53 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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