点击功能进入加载功能

时间:2014-05-30 09:20:31

标签: javascript jquery

我有代码

$(function() {
    // run the currently selected effect
    function runEffect() {
        // get effect type from
        var selectedEffect = $( "#effectTypes" ).val();

        // most effect types need no options passed by default
        var options = {};
        // some effects have required parameters
        if ( selectedEffect === "scale" ) {
            options = { percent: 100 };
        } else if ( selectedEffect === "size" ) {
            options = { to: { width: 280, height: 185 } };
        }

        // run the effect
        $( "#effect" ).show( selectedEffect, options, 500, callback );
    };

    //callback function to bring a hidden box back
    function callback() {
        setTimeout(function() {
            $( "#effect:visible" ).removeAttr( "style" ).fadeOut();
        }, 1000 );
    };

    // set effect from select menu value
    $( "#button" ).click(function() {
        runEffect();
    });

喜欢我希望将点击功能改为on on load function是一个初学者所以请帮帮我

1 个答案:

答案 0 :(得分:1)

如果我正确理解你,你想在页面加载时运行runEffect函数吗?

您可以通过在jQuery ready事件中调用该函数来完成此操作。

// This is shorthand for $(document).ready(function() { ... })
$(function() {
    // Declare the runEffect function here

    runEffect();
});