回答編集履歴
1
修正
answer
CHANGED
@@ -87,13 +87,13 @@
|
|
87
87
|
<script type="text/javascript" src="//code.jquery.com/jquery-2.2.4.min.js"></script>
|
88
88
|
<script type="text/javascript">
|
89
89
|
$(function () {
|
90
|
-
$("[name=prefecture]").prop('disabled', true);
|
90
|
+
//$("[name=prefecture]").prop('disabled', true);
|
91
91
|
|
92
92
|
$("[name=large_area]").on('click', function () {
|
93
93
|
$("[name=prefecture]")
|
94
94
|
.filter("[data-largearea=" + $(this).val() + "]")
|
95
|
-
.prop('checked', $(this).prop('checked'))
|
95
|
+
.prop('checked', $(this).prop('checked'));
|
96
|
-
.prop('disabled', !$(this).prop('checked'));
|
96
|
+
//.prop('disabled', !$(this).prop('checked'));
|
97
97
|
});
|
98
98
|
});
|
99
99
|
</script>
|