<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<input id="testID" class="testClass" name="testName" value="ํ
์คํธ"/>
</body>
</html>
input์ value ๊ธฐ์ค์ผ๋ก ์์ฑํ์์ต๋๋ค.
$('#testID').val(); // id ์ ํ์๊ฐ ๊ธฐ์ค์ผ ๋ #์ ๋ถ์ฌ์ค๋๋ค.
$('.testClass').val(); // class ์ ํ์๊ฐ ๊ธฐ์ค์ผ ๋ .์ ๋ถ์ฌ์ค๋๋ค.
$('[name=testName]').val(); // id, class ์ธ์ ์ด๋ฐ์์ผ๋ก ๊ฐ์ ธ์ฌ ์ ์์ต๋๋ค.
$('[test=testName]').val(); // ๋ง์ฝ test
๊ฒฐ๊ณผ๊ฐ์ ์ ๊ฐ์ ธ์จ๊ฒ์ ๋ณผ ์ ์์ต๋๋ค.
'...' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[CA] ๋๊ธฐ(Blocking)์ ๋น๋๊ธฐ(Non-Blocking) (2) | 2021.01.24 |
---|---|
[JS] ์ ๊ท์ ์์ ๋ค (0) | 2021.01.21 |
[Js] ์๋ฐ์คํฌ๋ฆฝํธ ํ๊ธ, ์์ด, ์ซ์ ์ฒดํฌํ๊ธฐ (0) | 2021.01.21 |
[Spring] ApplicationContext์ WebApplicationContext (0) | 2021.01.20 |
[Spring] root-context์ servlet-context (2) | 2021.01.20 |