2017-04-22 16 views
0

私はサファリ、モジラ、IEで何も起こっていないのに、すべてクロムで完璧と思われます。BootstrapモーダルポップアップがIEとMozillaで動作しない

<!-- MAIN CONTENT - CATEGORIES --> 
 
<div class="container"> 
 
    <div class="row"> 
 
    <div class="col-xs-12"> 
 
     <div class="home_cats"> 
 
     <div class="clearfix"> 
 
      <div class="row"> 
 
      <?$i=0; foreach($categs as $c):?> 
 
       <?if($c['id_category_parent'] == 1 AND $c['id_category'] != 1 AND ! in_array($c['id_category'], $hide_categories)):?> 
 
       <div class="col-xs-12 col-sm-4 col-md-4"> 
 
        <div class="panel panel-home-categories"> 
 
        <div class="panel-heading"> 
 
         <a title="<?=HTML::chars($c['name'])?>" href="<?=Route::url('list', array('category'=>$c['seoname'], 'location'=>$user_location ? $user_location->seoname : NULL))?>"> 
 
         <?$icon_src = new Model_Category($c['id_category']); $icon_src = $icon_src->get_icon(); if(($icon_src)!==FALSE):?> 
 
          <img src="<?=Core::imagefly($icon_src,30,20)?>" alt="<?=HTML::chars($c['name'])?>"> 
 
          <?endif?> 
 
          <?=mb_strtoupper($c['name']);?> 
 
           <?if (Theme::get('category_badge')!=1) : ?> 
 
           (
 
           <?=number_format($c['count'])?>) 
 
            <?endif?> 
 
         </a> 
 
        </div> 
 
        <div class="panel-body"> 
 
         <ul class="list-group"> 
 
         <?$ci=0; foreach($categs as $chi):?> 
 
          <?if($chi['id_category_parent'] == $c['id_category'] AND ! in_array($chi['id_category'], $hide_categories)):?> 
 
          <?if ($ci < 3):?> 
 
           <li class="list-group-item"> 
 
           <a title="<?=HTML::chars($chi['name'])?>" href="<?=Route::url('list', array('category'=>$chi['seoname'], 'location'=>$user_location ? $user_location->seoname : NULL))?>"> 
 
            <?if (Theme::get('category_badge')!=1) : ?> 
 
            <span class="pull-right badge badge-success"><?=number_format($chi['count'])?></span> 
 
            <?endif?> 
 
             <?=$chi['name'];?> 
 
           </a> 
 
           </li> 
 
           <?endif?> 
 
           <?$ci++; if($ci == 3):?> 
 
            <li class="list-group-item"> 
 
            <a role="button" class="show-all-categories" data-cat-id="<?=$c['id_category']?>"> 
 
             <?=__("See all categories")?> <span class="glyphicon glyphicon-chevron-right pull-right"></span> 
 
            </a> 
 
            </li> 
 
            <?endif?> 
 
            <?endif?> 
 
             <?endforeach?> 
 
         </ul> 
 
        </div> 
 
        </div> 
 
       </div> 
 
       <? $i++; if ($i%3 == 0) echo '<div class="clear"></div>';?> 
 
        <?endif?> 
 
        <?endforeach?> 
 
      </div> 
 
     </div> 
 
     </div> 
 
    </div> 
 
    </div> 
 
</div> 
 
<div id="modalAllCategories" class="modal fade" tabindex="-1" data-apiurl="<?=Route::url('api', array('version'=>'v1', 'format'=>'json', 'controller'=>'categories'))?>"> 
 
    <div class="modal-dialog modal-sm"> 
 
    <div class="modal-content"> 
 
     <div class="modal-header"> 
 
     <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> 
 
     </div> 
 
     <div class="modal-body"> 
 
     <ul class="list-group"> 
 
     </ul> 
 
     </div> 
 
    </div> 
 
    </div> 
 
</div> 
 
<!-- // MAIN CONTENT - CATEGORIES -->

私はボタンをクリックすると、ウィンドウをポップアップするリストビューを挿入する:ここで

以下のコードです。例でも同じです。ここ は例です:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> 
 
<script src="http://getbootstrap.com/dist/js/bootstrap.min.js"></script> 
 
<link rel="stylesheet" href="http://getbootstrap.com/dist/css/bootstrap.css" "> 
 

 

 
<div class="body-content"> 
 
<div align="center"> 
 

 
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-sm">Small modal</button> 
 

 
</div> 
 

 
<div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel"> 
 
    <div class="modal-dialog modal-sm" role="document"> 
 
    <div class="modal-content"> 
 
     <div class="modal-header sub-modal"> 
 
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> 
 
     </div> 
 
    
 
      <div class="modal-body"> 
 
       <ul class="list-group"> 
 
       <li class="list-group-item"><a href="#"> Here where i want the list view 1</a></li> 
 
       <li class="list-group-item"><a href="#"> Here where i want the list view 2</a></li> 
 
       <li class="list-group-item"><a href="#"> Here where i want the list view 3</a></li> 
 
       <li class="list-group-item"><a href="#"> Here where i want the list view 4</a></li> 
 
       </ul> 
 
      </div> 
 
     
 
    </div> 
 
    </div> 
 
</div> 
 
</div> 
 

 
<style> 
 
.body-content{padding-top:100px;} 
 
.sub-modal{background:#4285f4;} 
 
li {list-style-type: none;} 
 
.list-group-item { 
 
    position: relative; 
 
    display: block; 
 
    padding: 10px 15px; 
 
    margin-bottom: -1px; 
 
    background-color: #fff; 
 
    border: 1px solid #ddd; 
 
} 
 
li:hover{background:#4285f4;} 
 
a:focus, a:hover { 
 
    color: #fff; 
 
    text-decoration: none; 
 
} 
 

 
</style>

+0

あなたの問題はあなたのタグではなく、あなたが理解できないように見えるHTMLの「その他の」言語です。 –

+0

私はクロムでしか動作させませんでしたが、私はサイトの他のページを開くと私のサイトのキャッシュをきれいにする必要があります。 (F12を押すと)クロムからこのエラーが発生しました。要求されたリソースに 'Access-Control-Allow-Origin'ヘッダーがありません。 Origin 'linkinads.com';したがって、アクセスは許可されません。 、IEから私はこのエラーを受け取りました:SEC7120:Origin-Linkinads.comがAccess-Control-Allow-Originヘッダーに見つかりません。任意の提案してください!ありがとう –

答えて

0

、この問題での作業のほぼ24時間後。。!私は最終的に解決策を見つけました。私は自分のサイトで(https)を使用していることを忘れていますが、これをhtaccessに入れて解決しました。

0

あなたのリンクタグ内の余分な引用符( ")を削除し、私はそれが動作を期待

+0

私は実際にそれを動作させましたが、Mozilla、Safari、IEでは動作しませんでした!また、私は私のサイトの他のページを訪問し、ホームページに戻って再び動作しないときは、キャッシュをクリアして動作させる必要がありますか?それはスクリプトのようないくつかの許可を持っていますか?ブラウザのためです... –

+0

クロムからエラーを取得するだけで追加できます:要求されたリソースに 'Access-Control-Allow-Origin'ヘッダーがありません。したがって、Origin 'https://www.linkinads.com'はアクセスが許可されていません。 –

+0

IEで私はこのエラーが発生しました:SEC7120:原点https://www.linkinads.comがAccess-Control-Allow-Originヘッダーに見つかりません。 –

関連する問題