0

ページがロードされた後にjRejectスクリプトをロードしたいと思います。デフォルトの jReject スクリプトでは、クリックに対して機能します。ページの読み込み時に使用したいと思います。これを達成するには、どのような変更を加える必要がありますか? $(function() { $.reject(); }); をどこに置くべきですか?

これは私がヘッダーに持っているスクリプトです:

$(function() {
    // Handle external links
    $('a[rel="external"]').click(function() {
        var href = $(this).attr('href');

        // Send external link event to Google Analaytics
        try {
            _gaq.push(['_trackEvent','External Links', href.split(/\/+/g)[1], href]);
        } catch (e) {};

        window.open(href,'jr_'+Math.round(Math.random()*11));
        return false;
    });

    // Handle displaying of option links
    $('em.option').css({
        cursor: 'pointer',
        fontSize: '1.1em',
        color: '#333',
        letterSpacing: '1px',
        borderBottom: '1px dashed #BBB'
    }).click(function() {
        var self = $(this);
        var opt = $.trim(self.text());

        $('ol.dp-c:first').children('li').children('span').each(function() {
            var self = $(this);
            var text = self.text();
            var srch = opt+':';

            // If found, highlight and jump window to position on page
            if (text.search(srch) !== -1) {
                self.css('color','red');
                window.location.hash = '#c-'+opt;
                window.scrollTo(0,self[0].offsetTop);
            }
        });
    });

    /* Demo Codes */

    $('#demo3').click(function() {
        $.reject({
            reject: { all: true }, // Reject all renderers for demo
            header: 'Your browser is not supported here', // Header Text
            paragraph1: 'You are currently using an unsupported browser', // Paragraph 1
            paragraph2: 'Please install one of the many optional browsers below to proceed',
            closeMessage: 'Close this window at your own demise!' // Message below close window link
        }); // Customized Text

        return false;
    });

});
4

3 に答える 3

0

OPのリンクの一番下にあります:

ロード時に実行 (デフォルト オプション):

$(function() { $.reject(); });
于 2013-01-09T14:39:48.397 に答える
0

ドキュメントから:

ロード時に実行 (デフォルト オプション): $(function() { $.reject(); });

于 2013-01-09T14:39:52.323 に答える
0

コードを回す

$('#demo3').click(function() {
    $.reject({
        reject: { all: true }, // Reject all renderers for demo
        header: 'Your browser is not supported here', // Header Text
        paragraph1: 'You are currently using an unsupported browser', // Paragraph 1
        paragraph2: 'Please install one of the many optional browsers below to proceed',
        closeMessage: 'Close this window at your own demise!' // Message below close window link
    }); 
    return false;
});

の中へ

$.reject({
        reject: { all: true }, // Reject all renderers for demo
        header: 'Your browser is not supported here', // Header Text
        paragraph1: 'You are currently using an unsupported browser', // Paragraph 1
        paragraph2: 'Please install one of the many optional browsers below to proceed',
        closeMessage: 'Close this window at your own demise!' // Message below close window link
    });
于 2014-05-27T05:19:52.513 に答える