본문 바로가기

JQuery/work

블로그//답글입력

 

<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<h3>Detail View</h3>
<textarea rows="2" cols="20">기본글.....</textarea>
<br><br>

<button type="button" id="answer">답글입력</button>
<br>

<div id="answerForm">
<!-- 
	input text
	button -> input text -> 입력글을 alert으로 출력
 -->
</div>

<script type="text/javascript">
$(function () {
	
	$("#answer").click(function() {
		
		let txtf = "<br>답글:<input type='text' id='answerText'>";
		$("#answerForm").append(txtf);
		
		let btn = "<br><br><button type='button' id='answerBtn'>답글작성완료</button>";
		$("#answerForm").append(btn);		
	});
	/* 
	$("#answerBtn").on("click", function () {
		alert('answerBtn click');
	});
	 */
	
	$(document).on("click", "#answerBtn", function () {
		alert( $("#answerText").val() );
	}); 
});
</script>
</body>

'JQuery > work' 카테고리의 다른 글

뉴스기사 읽어오기 전 // 로딩중...  (0) 2020.07.17
송장정보의 입력  (0) 2020.07.17
append와 prepend로 추가하기  (0) 2020.07.16
radio와 checkBox  (0) 2020.07.16
JQ//table안에 배열 값 넣기 //테이블생성  (0) 2020.07.15