0

私は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

}
4

1 に答える 1

0

jqueryを使用しているので、値を取得した後(そしてそれを確信した後)、あなたがしなければならないのは

$('#qnaContent').val(content); // Considering that the result string is stored in "content"
于 2013-02-08T12:58:26.240 に答える