gpt4 book ai didi

javascript - 在 jquery 文件中调用 javascript 函数

转载 作者:行者123 更新时间:2023-12-02 14:58:59 25 4
gpt4 key购买 nike

你好,我需要在 jquery 中调用一个 javascript 函数,该函数来自另一个文件..我不知道该怎么做:/这是在 jquery 文件中

if ( slotNumber == cardNumber ) {
ui.draggable.addClass( 'correct' );
ui.draggable.draggable( 'disable' );
$(this).droppable( 'disable' );
ui.draggable.position( { of: $(this), my: 'left top', at: 'left top' } );
ui.draggable.draggable( 'option', 'revert', false );
correctCards++;
count ++;
//i want to add the function here
}

这是 js.js 文件

<script type = "text/javascript">
function fun() {
document.write("it's working");
}
</script>

有人知道该怎么做吗?

最佳答案

首先包含 js.js,然后包含 jQuery 代码。我建议确保在执行 jQuery 代码时应加载其他文件。

当您在全局定义 fun() 函数时,您可以直接调用它。

if ( slotNumber == cardNumber ) {
ui.draggable.addClass( 'correct' );
ui.draggable.draggable( 'disable' );
$(this).droppable( 'disable' );
ui.draggable.position( { of: $(this), my: 'left top', at: 'left top' } );
ui.draggable.draggable( 'option', 'revert', false );
correctCards++;
count ++;
fun();
}

关于javascript - 在 jquery 文件中调用 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35580227/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com