Last active
August 29, 2015 14:01
-
-
Save jz5/6f9cc63604ebcf9d5846 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.1.min.js"></script> | |
<script> | |
$(function () { | |
$("#text").change(function () { | |
console.log($(this).val()); // IE は text() でも取得できる | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment