Skip to content

Instantly share code, notes, and snippets.

@thejungwon
Last active March 10, 2019 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thejungwon/0c99499cf6c5aecd8d7dde283bbdfe63 to your computer and use it in GitHub Desktop.
Save thejungwon/0c99499cf6c5aecd8d7dde283bbdfe63 to your computer and use it in GitHub Desktop.
//1. id 로 접근해서 가져오기
var value = $('#test_id').val();
//2. class 로 접근해서 가져오기
var value = $('.test_class').val();
//3. name으로 접근해서 가져오기
var value = $('input[name=test_name]').val();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment