BLOG一覧

婚活診断

あなたの恋愛経験は?




婚活イベントに参加したことがありますか?


婚活アプリを使ったことはありますか?


結婚相談所を利用したことがありますか?


過去に付き合った人数は?




過去の恋愛で、最も長く付き合った相手との付き合いの期間は?






PAGE TOP
ログイン
document.getElementById("婚活診断フォーム").addEventListener("submit", function(event) { event.preventDefault(); // フォーム送信を防止let score = 0;// 恋愛経験 const 恋愛経験 = document.querySelector('input[name="恋愛経験"]:checked'); if (恋愛経験) { score += parseInt(恋愛経験.value); }// 婚活イベント const 婚活イベント = document.querySelector('input[name="婚活イベント"]:checked'); if (婚活イベント && 婚活イベント.value === "1") { score += 2; }// 婚活アプリ const 婚活アプリ = document.querySelector('input[name="婚活アプリ"]:checked'); if (婚活アプリ && 婚活アプリ.value === "1") { score += 1; }// 結婚相談所 const 結婚相談所 = document.querySelector('input[name="結婚相談所"]:checked'); if (結婚相談所 && 結婚相談所.value === "1") { score += 1; }// 過去の恋愛人数 const 過去の恋愛人数 = document.querySelector('input[name="過去の恋愛人数"]:checked'); if (過去の恋愛人数) { score += parseInt(過去の恋愛人数.value); }// 最長恋愛期間 const 最長恋愛期間 = document.querySelector('input[name="最長恋愛期間"]:checked'); if (最長恋愛期間) { score += parseInt(最長恋愛期間.value); }// 結果表示 let resultMessage = "";if (score >= 10) { resultMessage = "あなたは婚活アクティブ派!積極的に婚活を進めて、理想の相手に出会いましょう!"; } else if (score >= 6) { resultMessage = "あなたはおっとり婚活派。焦らず、じっくりと婚活を進めていきましょう。"; } else { resultMessage = "婚活初心者のあなた、まずは自分磨きからスタート!少しずつ婚活を進めましょう。"; }// 診断結果を表示 document.getElementById("診断結果").innerText = resultMessage; });