In Bootstrap, you can manually manipulate modal windows using specific functions.
Function Call Examples:
$('#myModal').modal('toggle'); // Toggle visibility $('#myModal').modal('show'); // Show modal $('#myModal').modal('hide'); // Hide modal
Specific Problem Resolution:
In your provided code, the following modification needs to be made:
Replace:
$('#my-modal').modal({ show: 'false' });
With:
$('#myModal').modal('show');
Additional Information:
以上がjQueryを使用してブートストラップモーダルウィンドウを開くにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。