質問するログイン新規登録

質問編集履歴

2

bootstrap

2018/04/14 02:11

投稿

退会済みユーザー
title CHANGED
File without changes
body CHANGED
@@ -8,7 +8,7 @@
8
8
  何卒よろしくお願い申し上げます。
9
9
 
10
10
  ##追記
11
- モーダルウィンドウはbootstrapを使用しています。
11
+ モーダルウィンドウはbootstrap3.3.5を使用しています。
12
12
 
13
13
  ##コード
14
14
  ```html

1

追記

2018/04/14 02:11

投稿

退会済みユーザー
title CHANGED
File without changes
body CHANGED
@@ -5,4 +5,25 @@
5
5
 
6
6
  処理の書き方などを教えていただけますでしょうか。
7
7
 
8
- 何卒よろしくお願い申し上げます。
8
+ 何卒よろしくお願い申し上げます。
9
+
10
+ ##追記
11
+ モーダルウィンドウはbootstrapを使用しています。
12
+
13
+ ##コード
14
+ ```html
15
+ <a class="js-open" href="{{url()}}">click</a>
16
+ <div id="modal" tabindex="-1" role="dialog" aria-labelledby="modalLabel" aria-hidden="true">
17
+
18
+ </div>
19
+
20
+ ```
21
+
22
+ ```javascript
23
+ $('.js-open').click(function() {
24
+ var $bigModel = $("#modal").modal();
25
+ $("#modal").load(function() {
26
+
27
+ });
28
+ });
29
+ ```