2016-05-02 21 views
0

私はボタンxを持っており、モーダルを閉じることはできません。私はモーダルを閉じることができる唯一の方法は、モーダルまたはリフレッシュするページの外側のどこかをクリックすることです。ここでxをクリックするとモーダルを閉じることができません

は私のhtmlです:

<button class="close" data-dismiss="modal" data-target="modal-register"> 
         <span aria-hidden="true">&times;</span><span class="sr-only">Close</span> 
        </button> 

答えて

0

はたぶんdata-targetを削除してみてください。ブートストラップは、data-target

<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> 
+0

がなくても、ドキュメントにこれを示しています。 – swipeales

関連する問題