質問編集履歴
3
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -23,7 +23,7 @@
|
|
23
23
|
</form>
|
24
24
|
```
|
25
25
|
```js
|
26
|
-
$('input[
|
26
|
+
$('input[name="reset"]').change(function(){
|
27
27
|
var $propChecked = $(this).prop("checked");
|
28
28
|
return $propChecked ? $(this).val('on') : $(this).val('');
|
29
29
|
});
|
2
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -23,7 +23,7 @@
|
|
23
23
|
</form>
|
24
24
|
```
|
25
25
|
```js
|
26
|
-
$('input[reset"]').change(function(){
|
26
|
+
$('input[type="reset"]').change(function(){
|
27
27
|
var $propChecked = $(this).prop("checked");
|
28
28
|
return $propChecked ? $(this).val('on') : $(this).val('');
|
29
29
|
});
|
1
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
select部分でドメイン、inputで通常のパラメータを付けたいのですが、うまくいきません。
|
3
3
|
|
4
4
|
以下の状況(コードで)submitすると,
|
5
|
-
https://hogehoge.com?reset=on
|
5
|
+
https://hogehoge.com?reset=on //inputをonにした場合
|
6
6
|
となります。
|
7
7
|
|
8
8
|
formのaction値は、selectで選んだものになっています。
|