页面加载时的Jquery而不是onclick

时间:2014-12-19 16:53:08

标签: jquery onclick onload

我喜欢这个jquery脚本加载页面加载而不是加载点击。 我更改了以下内容:

<script>
    $('.error').on('click', function(){
        $(this).notifyMe(
            'bottom', // Position
            'error', // Type
            'Lorem Ipsum Text', // Title
            'Lorem Ipsum is simply dummy text of the printing', // Description
            200 // Velocity of notification
        2000 // (optional) Time of delay to close automatically
        );
    });
</script>

为:

<script>
    $(document).ready(function() {
        $(this).notifyMe(
            'bottom', // Position
            'error', // Type
            'Lorem Ipsum Text', // Title
            'Lorem Ipsum is simply dummy text of the printing', // Description
            200 // Velocity of notification
        2000 // (optional) Time of delay to close automatically
        );
    });
</script>

但它没有加载告示者。 它基于以下脚本:http://www.jqueryrain.com/?koLHvt8W

有人可以告诉我我做错了吗?

1 个答案:

答案 0 :(得分:1)

应该是:

$(document).ready(function () {
    $('.error').notifyMe(
        'bottom', // Position
    'error', // Type
    'Lorem Ipsum Text', // Title
    'Lorem Ipsum is simply dummy text of the printing', // Description
    200 // Velocity of notification
    2000 // (optional) Time of delay to close automatically
    );
});