「飲食店検索」の版間の差分
提供: 川西図鑑
その他の操作
編集の要約なし |
編集の要約なし |
||
| 300行目: | 300行目: | ||
<script> | <script> | ||
document.getElementById('searchForm').addEventListener('submit', function (e) { | document.getElementById('searchForm').addEventListener('submit', function (e) { | ||
const | const searchText = document.getElementById('searchText'); | ||
const genre = document.getElementById('genre'); | |||
const station = document.getElementById('station'); | |||
const budget_min = document.getElementById('budget_min'); | |||
const budget_max = document.getElementById('budget_max'); | |||
if (searchText.value === '') { | |||
searchText.removeAttribute('name'); // 空のとき name属性を削除 | |||
} | |||
if (genre.value === '') { | |||
genre.removeAttribute('name'); // 空のとき name属性を削除 | |||
} | |||
if (station.value === '') { | |||
station.removeAttribute('name'); // 空のとき name属性を削除 | |||
} | |||
if (budget_min.value === '') { | |||
budget_min.removeAttribute('name'); // 空のとき name属性を削除 | |||
} | |||
if (budget_max.value === '') { | |||
budget_max.removeAttribute('name'); // 空のとき name属性を削除 | |||
} | |||
}); | }); | ||
//# sourceURL=foobar.js | //# sourceURL=foobar.js | ||
2025年12月6日 (土) 18:30時点における版
検索条件
検索結果
エラー: テーブル飲食店情報が見つかりません。