ブートストラップ「モーダル」をいくつか使用して、ブートストラップのウェブサイトを作成しています。一部のデフォルト機能をカスタマイズしようとしています。
問題はこれです。背景をクリックしてモーダルを閉じることができます。この機能を無効にする方法はありますか?特定のモーダルのみ?
ブートストラップ「モーダル」をいくつか使用して、ブートストラップのウェブサイトを作成しています。一部のデフォルト機能をカスタマイズしようとしています。
問題はこれです。背景をクリックしてモーダルを閉じることができます。この機能を無効にする方法はありますか?特定のモーダルのみ?
回答:
オプションの章のリンクしたページで、backdrop
オプションを確認できます。このオプションに値'static'
を渡すと、モーダルが閉じなくなります。
@PedroVagnerがコメントを指摘したように、を{keyboard: false}
押してパスを渡してモーダルを閉じないようにすることもできますEsc。
jsでモーダルを開く場合:
$('#myModal').modal({backdrop: 'static', keyboard: false})
データ属性を使用している場合は、以下を使用します。
<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
Launch demo modal
</button>`
$('#modal').modal('show');
これが役立つことを願ってください!
これが一番簡単です
データキーボードとデータ背景を定義して、モーダル動作を定義できます。
<div id="modal" class="modal hide fade in" data-keyboard="false" data-backdrop="static">
data-backdrop="static"
モーダルな定義ではなく、私のために働いた他の回答で指定されたモーダルを開くトリガーボタン、上のオプションを選択します。
次のような属性を使用できます:data-backdrop="static"
またはjavascript:
$('#myModal').modal({
backdrop: 'static',
keyboard: false // to prevent closing with Esc button (if you want this too)
})
この回答も参照してください:Twitterブートストラップモーダルウィンドウが閉じないようにする
私のアプリケーションでは、jQueryを介してBootstrapモーダルを表示するために、以下のコードを使用しています。
$('#myModall').modal({
backdrop: 'static',
keyboard: true,
show: true
});
使用できます
$.fn.modal.prototype.constructor.Constructor.DEFAULTS.backdrop = 'static';
$.fn.modal.prototype.constructor.Constructor.DEFAULTS.keyboard = false;
デフォルトの動作を変更します。
モーダルを閉じるためにブートストラップモデル領域の外側のクリックを無効にする方法は2つあります。
JavaScriptを使用
$('#myModal').modal({
backdrop: 'static',
keyboard: false
});
HTMLタグでのデータ属性の使用
data-backdrop="static" data-keyboard="false" //write this attributes in that button where you click to open the modal popup.
これをチェックアウト::
$(document).ready(function() {
$("#popup").modal({
show: false,
backdrop: 'static'
});
$("#click-me").click(function() {
$("#popup").modal("show");
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap.css" rel="stylesheet"/>
<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.1.0/css/bootstrap-combined.min.css" rel="stylesheet">
</head>
<body>
<div class="modal" id="popup" style="display: none;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Standard Selectpickers</h3>
</div>
<div class="modal-body">
<select class="selectpicker" data-container="body">
<option>Mustard</option>
<option>Ketchup</option>
<option>Relish</option>
</select>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>
<a id="click-me" class="btn btn-primary">Click Me</a>
</body>
<script type="text/javascript" src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.1.0/js/bootstrap.min.js"></script>
</html>
モーダルがすでに開かれているかどうかが不明で、モーダルオプションを構成する必要がある場合の別のオプション:
ブートストラップ3.4
var $modal = $('#modal');
var keyboard = false; // Prevent to close by ESC
var backdrop = 'static'; // Prevent to close on click outside the modal
if(typeof $modal.data('bs.modal') === 'undefined') { // Modal did not open yet
$modal.modal({
keyboard: keyboard,
backdrop: backdrop
});
} else { // Modal has already been opened
$modal.data('bs.modal').options.keyboard = keyboard;
$modal.data('bs.modal').options.backdrop = backdrop;
if(keyboard === false) {
$modal.off('keydown.dismiss.bs.modal'); // Disable ESC
} else { //
$modal.data('bs.modal').escape(); // Resets ESC
}
}
Bootstrap 4.3以降
var $modal = $('#modal');
var keyboard = false; // Prevent to close by ESC
var backdrop = 'static'; // Prevent to close on click outside the modal
if(typeof $modal.data('bs.modal') === 'undefined') { // Modal did not open yet
$modal.modal({
keyboard: keyboard,
backdrop: backdrop
});
} else { // Modal has already been opened
$modal.data('bs.modal')._config.keyboard = keyboard;
$modal.data('bs.modal')._config.backdrop = backdrop;
if(keyboard === false) {
$modal.off('keydown.dismiss.bs.modal'); // Disable ESC
} else { //
$modal.data('bs.modal').escape(); // Resets ESC
}
}
オプションを_configに変更します
_setEscapeEvent()
代わりにすべき.escape()
ですか?
私のために働く解決策は次のとおりです:
$('#myModal').modal({backdrop: 'static', keyboard: false})
背景:Click Outsideイベントを無効にしました
キーボード:scapeキーワードイベントを無効化
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-keyboard="false" data-backdrop="static">
これを試してください。アプリケーション開発中に...モデル属性のデフォルト値=> data-keyboard="true"
、=>data-backdrop="non static"
これがあなたに役立つことを願っています!
これを試して:
<div
class="modal fade"
id="customer_bill_gen"
data-keyboard="false"
data-backdrop="static"
>
backdrop: 'static'
https://getbootstrap.com/docs/3.3/javascript/#modals-options
static
クリック時にモーダルを閉じない背景を指定します。
You can Disallow closing of #signUp (This should be the id of the modal) modal when clicking outside of modal.
As well as on ESC button.
jQuery('#signUp').on('shown.bs.modal', function() {
jQuery(this).data('bs.modal').options.backdrop = 'static';// For outside click of modal.
jQuery(this).data('bs.modal').options.keyboard = false;// For ESC button.
})
あなたが使用している場合は、@ NG-ブートストラップの使用を以下:
成分
import { Component, OnInit } from '@angular/core';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
@Component({
selector: 'example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.scss'],
})
export class ExampleComponent implements OnInit {
constructor(
private ngbModal: NgbModal
) {}
ngOnInit(): void {
}
openModal(exampleModal: any, $event: any) {
this.ngbModal.open(exampleModal, {
size: 'lg', // set modal size
backdrop: 'static', // disable modal from closing on click outside
keyboard: false, // disable modal closing by keyboard esc
});
}
}
テンプレート
<div (click)="openModal(exampleModal, $event)"> </div>
<ng-template #exampleModal let-modal>
<div class="modal-header">
<h5 class="modal-title">Test modal</h5>
</div>
<div class="modal-body p-3">
<form action="">
<div class="form-row">
<div class="form-group col-md-6">
<label for="">Test field 1</label>
<input type="text" class="form-control">
</div>
<div class="form-group col-md-6">
<label for="">Test field 2</label>
<input type="text" class="form-control">
</div>
<div class="text-right pt-4">
<button type="button" class="btn btn-light" (click)="modal.dismiss('Close')">Close</button>
<button class="btn btn-primary ml-1">Save</button>
</div>
</form>
</div>
</ng-template>
このコードは、角度9で以下を使用してテストされました。
"@ ng-bootstrap / ng-bootstrap": "^ 6.1.0"、
"ブートストラップ": "^ 4.4.1"、