0

基本的に、クラス「リンク」を使用して複数のリンクを作成し、それぞれが表すもののIDを持っています。

JQuery スクリプトを作成しましたが、うまく機能せず、最初のエラーがスローされます。

    $(function() {
    $.get('pages/home.html')
    .success(function(response) {
        $('.contentblock').html(response);
    })
    .error(function(jqXHR, textStatus, errorThrown) {
        $('.contentblock').html('<h1>Failed to load page(s)!</h1>');
    });

    $(document).on('click', '.link', function() {
        $('.contentblock').html('<div class="animatedload"></div>');

        var page = 'pages/' + $(this).attr('id') + '.html';
        $('.contentblock').hide();
        $.get(page)
        .success(function(response) {
            $('.contentblock').html(response);
        })
        .error(function(jqXHR, textStatus, errorThrown) {
        });
        $('.contentblock').fadeIn(1000);
    });
});

6 行目に .error(function()){} を投げています。

これを解決するのを手伝ってください:(事前に助けてくれてありがとう!

編集:コードではなく、サーバーの問題でした:)

〜MCD

4

1 に答える 1

0

@crimson_penguin は正しかったことがわかりました。

セキュリティ上の理由から機能しないため、サーバーに配置して機能させます

于 2013-04-06T17:06:44.563 に答える