gpt4 book ai didi

gwt - JSNI GWT jQuery

转载 作者:行者123 更新时间:2023-12-04 22:34:26 27 4
gpt4 key购买 nike

我有一个文件 jQuery 来创建翻转卡片效果,我将其更改为 JSNI,使用 native 函数但错误。我不知道怎么了。有谁能够帮我?
这是我的 native 功能:

public native void flip() /*-{
$(document).ready(function () {
$('#nav-list-example div div.back').hide().css('left', 0);

function mySideChange(front) {
if (front) {
$(this).parent().find('div.front').show();
$(this).parent().find('div.back').hide();

} else {
$(this).parent().find('div.front').hide();
$(this).parent().find('div.back').show();
}
}

$('#nav-list-example div').hover(
function () {
$(this).find('div').stop().rotate3Di('flip', 250, {direction: 'clockwise', sideChange: mySideChange});
},
function () {
$(this).find('div').stop().rotate3Di('unflip', 500, {sideChange: mySideChange});
}
);
});
}-*/;

最佳答案

JSNI 101 : $wnd.$($doc).ready(function($) {…
使用 $ 作为回调函数的参数应该允许在函数内部使用 $ 而不是 $wnd.$

关于gwt - JSNI GWT jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10817236/

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