次のコードがあります。
<body>
<div id="cp_container">
<a href="#" onclick="show_questions_panel()" >Questions</a>
<a href="#" onclick="show_profile_panel()" >Profile </a>
<div id="cp_questions_panel">
<div id="cp_button_container">
<a href="#" onclick="show_all_questions()" >All Questions </a>
<br>
<a href="#" onclick="show_un_answered_questions()" > Un Answered Questions</a>
</div>
<div id="cp_all_questions">
</div>
<div id="cp_un_answered_questions">
<div id='question_edit_form'>
<form method="post" action="cpanel.php#cp_un_answered_questions">
<label>Question Title </label><br>
<input type="text" name="question_title_edit" id='question_title_edit'>
<br>
<label>Question</label><br>
<textarea name="question_edit" id="question_edit" rows="5" cols="50"></textarea>
<br>
<label>Answer Title </label><br>
<input type="text" name="answer_title_edit" id="answer_title_edit">
<br>
<label>Answer</label><br>
<textarea name="answer_edit" id="answer_edit" rows="5" cols="50"></textarea>
<br>
<input type="input" name="question_id_edit" id="question_id_edit">
<input type="submit" value="Save">
</form>
</div> <!--End of question_edit_form-->
</div> <!-- End Of cp_un_answered_questions -->
</div> <!-- End Of cp_questions_panel -->
<div id="cp_profile_panel">
</div>
上記のコードには、次の行が存在します。
<form method="post" action="cpanel.php#cp_un_answered_questions">
しかし、フォームが送信された後、ブラウザは「cpanel.php」ページに移動します。送信結果を報告するために送信されたフォームにブラウザーが移動するようにします。それを解決するのは難しいですか?