質問編集履歴

1

Jqueryの書き方変更

2019/11/19 01:27

投稿

firefire123
firefire123

スコア5

test CHANGED
File without changes
test CHANGED
@@ -42,31 +42,37 @@
42
42
 
43
43
  ```jquery
44
44
 
45
- <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
46
-
47
- <script type="text/javascript">
48
-
49
- $(function () {
45
+ $(function () {
50
-
51
- var template = [
52
-
53
- '', 'テンプレ1', 'テンプレ2', 'テンプレ3'
54
-
55
- ];
56
46
 
57
47
 
58
48
 
59
- $('select').on('change', function () {
49
+ // 切り替えたセリフテンプレートをテキストエリアに反映
60
50
 
61
- var i = $(this).val();
51
+ var SerifSelect = $('.p-SelectGroup');
62
52
 
63
- $('textarea').val(template[i]);
53
+ var textarea = $('body textarea');
64
54
 
65
- });
55
+ SerifSelect.each(function (i, el) {
66
56
 
67
- });
57
+ $(this).on('change', function () {
68
58
 
59
+ var selectedTemplate = $(this).find('option:selected').val();
60
+
61
+
62
+
69
- </script>
63
+ $(textarea[i]).val(selectedTemplate);
64
+
65
+ });
66
+
67
+ })
68
+
69
+
70
+
71
+ });
72
+
73
+
74
+
75
+
70
76
 
71
77
  ```
72
78