モーダルウィンドウ表示
前回の続きです。
PHPでログイン機能:https://qiita.com/x49_n/items/07b80a1e88c483f7256a
予定入力欄作成
予定を入れたい日を選択すると、モーダルウィンドウが表示され予定を記入できるようにしたい。
前回作成したカレンダーのクリックイベント(jQuery)に追加します。
cal_script.js
$(function() {
$("td").on("click", function() {
// 選択部分の色変更
$("td").removeClass("select");
$(this).addClass("select");
// tdの値(日にち)を取得し出力
$("#select_day").text($(this).text());
// スケジュール記入欄表示
$('#plan-modal').fadeIn();
});
// 閉じるボタン
$('.close-modal').on("click", function() {
$('#plan-modal').fadeOut();
});
});
動作確認問題なしッッ!!
入力した内容もDBに登録されていたのでOKです!
Author And Source
この問題について(モーダルウィンドウ表示), 我々は、より多くの情報をここで見つけました https://qiita.com/x49_n/items/edc316a0807d63d1c018著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .