私はjQueryとAJAXの初心者ですが、JSPファイルからHTML5に値を取得して、その値を<textarea>
HTML5ソースにあるに入れたいと思っています。私を助けてくれてありがとう。
ソースファイルは次のとおりです。
<html>
..
<body>
<div data-role="content">
<div data-role="fieldcontain">
<form method="post" action="ShowQuestion.jsp" name="frm" > <!--using post action, transfer Element Information-->
<label for="theQuestion"></label>
<div id="QuestionLog"> <!--to contain my question title and content-->
<input type="text" id="qnaTitle" name="qnaTitle" > </input> <!--input title-->
<textarea cols="20" rows="5" wrap="hard" id="qnaContent" name="qnaContent">
</textarea> <!--input content-->
</div>
</form>
..
</body>
</html>
Connection conn;
PreparedStatement pstmt;
ResultSet rs=null;
pstmt = conn.prepareStatement("select * from question "); // query
rs = pstmt.executeQuery(); // execute that query
while(rs.next()) {
String title=rs.getString(1); //save the query's result
String content = rs.getString(2); //save the query's result,too
}
}catch(Exception e) {
e.printStackTrace(); // print the Exception Message
}