質問編集履歴

1

修正

2021/09/19 07:53

投稿

erp
erp

スコア46

test CHANGED
File without changes
test CHANGED
@@ -120,6 +120,34 @@
120
120
 
121
121
  documentに対してクリックイベントを起こすと、ボタン以外の部位を押してもスクロールされてしまって困ります。それも上部から下部まで戻ってきてしまいます。
122
122
 
123
+ ```JS
124
+
125
+ $(document).on('click', topBtn, function () {
126
+
127
+ $('html').animate({
128
+
129
+ scrollTop: 0
130
+
131
+ }, 1050);
132
+
133
+ return false;
134
+
135
+ });
136
+
137
+ $(document).on('click', bottomBtn, function () {
138
+
139
+ $('html').animate({
140
+
141
+ scrollTop: $(document).height()
142
+
143
+ }, 1050);
144
+
145
+ return false;
146
+
147
+ });
148
+
149
+ ```
150
+
123
151
 
124
152
 
125
153
  ### 補足情報(FW/ツールのバージョンなど)