无法调用函数默认多维数据集或库存多维数据集

时间:2011-02-26 03:58:44

标签: jquery jquery-plugins

除了第一个以外,是什么让我无法调用任何这些功能?我尝试在身体中使用Button onclick。我正在使用ajax jQuery。代码中是否缺少某些内容,或者我错过了哪些内容。谢谢你的帮助!

<script>
    $(document).ready(function(){

        $('#defaultCube').imagecube(); 
        });
</script>
<script type="text/javascript" language="JavaScript">

$(function () { 
    $('#stopCube').toggle(function () {
        $(this).text('Start');
        $('#defaultCube').imagecube('stop');
    }, function () {
        $(this).text('Stop');
        $('#defaultCube').imagecube('start');
    });
});


$('#removeCube').toggle(function(){
        $(this).text('Re-attach');
$('#defaultCube').imagecube('destroy');
},
    function(){
$(this).text('Remove');
$('#defaultCube').imagecube();
});
}

</script>

1 个答案:

答案 0 :(得分:0)

如果您想通过按钮onlick调用上述功能,那么您可以使用

$( '#buttonID')。单击(){   把功能体放在这里 });

将函数包装在另一个函数中,如

function cube(){  把功能体放在这里 }

并在按钮'“onclick”事件上调用“cube”。

第一个解决方案你不需要调用该函数,它会自动调用按钮点击。