1

このチュートリアルに示されているように、jQuery Modal Window の 1 つを使用しています。

基本的な例では問題なく動作しますが、ページの読み込み時にモーダル ウィンドウを表示するように変更すると動作しません。リンク<a href="#dialog" name="modal">Simple Modal Window</a>をクリックすると、ポップアップ モーダルが表示されなくなります。

私はjsFiddleの例を持っています

何が間違っているのかわかりません。

ページ読み込みイベントで単純なモーダル ウィンドウを表示したいだけです。

launchWindow('#dialog');  // does not work as shown in that tutorial
4

4 に答える 4

2

これを試してください:http://jsfiddle.net/HJUZm/

<a>削除したばかりのものをクリックすると、それが表示されます。

$(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);

});    
});
于 2012-12-27T07:04:07.867 に答える
2

あなたのコードには function がありませんlaunchWindow()。これは機能です:

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

        //Set heigth 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());
        $(id).css('left', winW/2-$(id).width()/2);

        //transition effect
        $(id).fadeIn(2000); 
}
于 2012-12-27T07:14:39.177 に答える
2

uがFiddleで説明したように、ページの読み込みで機能することを確認してください

Here simply I have removed     `$('a[name=modal]').click(function(e) {` }); 

var id = $('#link').attr('href');リンクIDがタグのIDである場所を設定しました

于 2012-12-27T07:15:08.810 に答える
0

launchWindow(..)は JavaScript で定義されていません。

代わりにこれを試してください:
$('a[name=modal]').click();

于 2012-12-27T07:06:07.493 に答える