ノードは、階層内の指定された位置に挿入することができない「コード:」3

StackOverflow https://stackoverflow.com/questions/1119211

  •  12-09-2019
  •  | 
  •  

質問

ねえ、それはjqueryのについての質問をし、のGridLayout に私はPHPを作ったことをもう一度私ですスイッチと私は挿入していたコードとテンプレートがこれです。

<div id="wrapper">

<div id="grid">
<div class="box"><img src="img/an_005_BUR_thebeat.jpg" width="310px" height="438px" />3 index</div>
<div class="box"><img src="img/an_014_GUE_homme_a.jpg" width="310px" height="404px" />4 Culture</div>
<div class="box"><img src="img/an_044_BVL_springmotiv.jpg" width="310px" height="310px" />5 Pharma</div>
<div class="box"><img src="img/an_039_AN_diskette.jpg" width="310px" height="465px" />6 Pharma IT</div>
<div class="box"><img width="310px" height="100px" />7 Culture</div>
<div class="box"><img width="310px" height="120px" />8 Cosmetics</div>
<div class="box"><img width="310px" height="400px" />9 IT</div>
<div class="box"><img width="310px" height="400px" />10 Culture</div>
<div class="box"><img width="310px" height="400px" />11 IT</div>
<div class="box"><img width="310px" height="400px" />12 Culture</div>
</div>

</div>
    <script type="text/javascript">

    $(document).ready(function(){

        $('#grid').gridLayout('.box', {col_width: 340, min_cols: 2});
        // options - (values above are the defaults)
        // col_width: the width of each grid block
        // min_cols: the minimum number of cols on the page (reducing browser width below this will not decrease number of columns). Set to your largest block (3 = block spans 3 columns)

        // gridLayout.placeAtEnd() - for placing a block at bottom right of grid
        var final_block = $('');
        $('#grid').gridLayout.placeAtEnd( final_block );

        // gridchange event fires when window resize forces a grid refresh
        $('#grid').bind( "gridchange", function(e){
            console.log('gridchange event fired');
            // reposition the final block
            $('#grid').gridLayout.placeAtEnd( final_block );
        });

        // this forces a redraw of grid
        $('body').gridLayout.refresh();

        // returns heights of each column
        console.log( 'gridLayout.info():', $('#grid').gridLayout.info() );
    });

</script>

jqueryのスクリプト、プラグインは、ヘッダにロードされます。私はこれを実行しようとします。 Firebugのは、私に語っます:

コード「ノードは、階層内の指定された位置に挿入することができない」:「3」

誰もがこの問題を解決する方法を知っていますか?

ます。http:// 18735

ここに私がアップロードされた例があります。 webhosting7.1blu.de/neu/index.php?item=lifestyleする

役に立ちましたか?

解決

私はあなたのエラーは、以下であるかなり確信しています。 $( '')!

とは何ですか
var final_block = $('');
$('#grid').gridLayout.placeAtEnd( final_block ); 

これは動作します私が言うのならば、

var final_block = $('<div />');
$('#grid').gridLayout.placeAtEnd( final_block );

他のヒント

エラーメッセージは、あなたが例えば、それ自体にノードを追加しようとするだけでなく、$()コンストラクタで間違ったHTMLを持っている場合(放火魔に)表示されます。

$div = $('<div />');
$div.append($div);
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top