0

このチュートリアルを使用して、ページの読み込み時にポップアップ モーダル ウィンドウを表示しています。何らかの理由で、モーダル内のコンテンツと画像が表示されません。

私が取り組んでいるコードはjsFiddleにあります

異なる次元の画像の形式でメッセージを表示できるシンプルなモーダル ポップアップが必要です。モーダルをページの中央に表示し、画像に従って幅と高さを調整します。この点で助けていただければ幸いです。

コード

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Simple JQuery Modal Window from Queness</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script>
$(document).ready(function() {
        var id = $(this).attr('href');
        //Get the screen height and width
        var maskHeight = $(document).height();
        var maskWidth = $(window).width();

        //Set height and width to mask to fill up the whole screen
        $('#mask').css({'width':maskWidth,'height':maskHeight});

        //transition effect    
        $('#mask').fadeIn(1000);   
        $('#mask').fadeTo("slow",0.8);

        //Get the window height and width
        var winH = $(window).height();
        var winW = $(window).width();

        //Set the popup window to center
        $(id).css('top',  winH/2-$(id).height()/2);
        $(id).css('left', winW/2-$(id).width()/2);

        //transition effect
        $(id).fadeIn(2000);

    //if close button is clicked
    $('.window .close').click(function (e) {
        //Cancel the link behavior
        e.preventDefault();
        $('#mask, .window').hide();
    });    

    //if mask is clicked
    $('#mask').click(function () {
        $(this).hide();
        $('.window').hide();
    });        

    $(window).resize(function () {

        var box = $('#boxes .window');

        //Get the screen height and width
        var maskHeight = $(document).height();
        var maskWidth = $(window).width();

        //Set height and width to mask to fill up the whole screen
        $('#mask').css({'width':maskWidth,'height':maskHeight});

        //Get the window height and width
        var winH = $(window).height();
        var winW = $(window).width();

        //Set the popup window to center
        box.css('top',  winH/2 - box.height()/2);
        box.css('left', winW/2 - box.width()/2);

    });    
});
</script>
<style>

/* Z-index of #mask must lower than #boxes .window */
#mask {
  position:absolute;
  z-index:9000;
  background-color:#000;
  display:none;
}
#boxes .window {
  position:fixed;

  display:none;
  z-index:9999;
  padding:20px;
}
/* Customize your modal window here, you can add background image too */
#boxes #dialog {

}
</style>

</head>
<body>

<div id="boxes">
    <!-- #customize your modal window here -->
    <div id="dialog" class="window">
        <b>Testing of Modal Window</b> |
        <!-- close button is defined as close class -->
        <a href="#" class="close">Close it</a>
 <br />
        <img src="http://pierre.chachatelier.fr/programmation/images/mozodojo-original-image.jpg" />
    </div>
    <!-- Do not remove div#mask, because you'll need it to fill the whole screen -->
    <div id="mask"></div>
</div>

</body>
</html>
4

1 に答える 1

0

エラーはこの行の操作です

    var id = $(this).attr('href');

document.ready には href 属性がありませんが、それを置き換えると

    var id = "#dialog";

あなたのモーダルは機能します。参照: http://jsfiddle.net/HJUZm/3/

もっと...

あなたが読んでいるチュートリアルでは、2 つの間違いが考えられます。

まず、あなたのHTMLにあなたが欠けているということです

    <!-- #dialog is the id of a DIV defined in the code below -->
    <a href="#dialog" name="modal">Simple Modal Window</a>

そして、何らかの理由で使用するのを忘れてしまい$('a[name=modal]').click(function(e) {、代わりに document.ready に挿入しただけです

違い$('a[name=modal]')は、document.ready はページの準備ができたときに 1 回起動され、属性が$('a[name=modal]').click(function(e){...});クリックされるたびに起動されることです。namemodal

于 2012-12-27T11:38:57.240 に答える