ssouf

value값가져오기 본문

Web DEV/jQuery

value값가져오기

황금니 2010. 1. 18. 23:34

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title> new document </title>
  <meta name="generator" content="editplus" />
  <meta name="author" content="" />
  <meta name="keywords" content="" />
  <meta name="description" content="" />
 <script src="./Scripts/Jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="./Scripts/Jquery/jquery-1.3.2.js" type="text/javascript"></script>

<script type="text/javascript">
function check(){
var aa = $("#txt_id").val();
alert(aa);
}
</script>
 </head>

 <body>
<input type="text" id="txt_id" /> 
<input type="submit"  onclick="check();"/>
 </body>
</html>

'Web DEV > jQuery' 카테고리의 다른 글

테이블 행 드래그앤 드랍 정렬 저장  (0) 2021.02.22
추천 jquery Plugin Tree 부분  (0) 2021.02.22
jquery 쓸만한 플러그인  (0) 2012.06.18
jquery 로 썸네일 이미지 만들기  (0) 2012.06.14