English 中文(简体)
j 质量确实令人奇怪。
原标题:jQuery is behaving really odd

我有一张 j子,在母集装箱内的集装箱内铺设和铺设。 根据被点击的纽顿(设计、网络)确定哪些集装箱(< 编码># Design、#web)停泊,哪里有一个小块。

现在,这些集装箱(# Design/code>,#web)在高度上有所不同,因此,当我在这些集装箱之间发现和疏漏时,该页在<>fadeIn(>功能线>后直接升至特定位置。 该职位(x,y)与该网页在母集装箱内(即空集装箱)未发现任何集装箱时的位置完全相同。

此前是否有任何人遇到过这种情况? 任何建议都受到高度赞赏,因为这一问题正在无休止地给我造成困惑。

www.un.org/Depts/DGACM/index_spanish.htm PS。 我在“空间”和“Sato”测试了这个词,两者都显示同样的问题。

// edit 1: Here is a URL which you can check out: http://toolboxstudio.co.za/version3/?page=packages

如果你想看到该集装箱如何空洞:http://tool Boxstudio.co.za/version3/?page= Packages#empty,那么你就可以在距离旗帜以下的纽顿(Design或Web)上点击。 它将损害正确的内容,并在两者之间gle。 只用空箱整页装上一页,在脚下没有额外的空间。 然后点击 but子,在两个纽州之间盘旋。 你们看一看我对一页跳动的意思。

该法典:

$("div.design.button a").click(function () {
    $(this).parent("div").addClass("active");
    $("div.web.button").removeClass("active");

    if ($("div.web_content").is(":visible")) {
        $("div.web_content").fadeOut(function () {
            $("div.design_content").fadeIn();
        });
    } else {
        $("div.design_content").fadeIn();
    }
    window.location.hash = "#design";
    resizeWindow();

    e.returnValue = false;
    e.preventDefault();

    return false;

    alert("hello");     
});

$("div.web.button a").click(function () {
    $(this).parent("div").addClass("active");
    $("div.design.button").removeClass("active");

    if ($("div.design_content").is(":visible")) {
        $("div.design_content").fadeOut(function () {
            $("div.web_content").fadeIn();
            return false;
        });
    } else {
        $("div.web_content").fadeIn();
        return false;
    }
    window.location.hash = "#web";
    resizeWindow();

    e.returnValue = false;
    e.preventDefault();

    return false;

    alert("world");
});
最佳回答

我认为,我通过将守则改为:

$("div.design.button a").click(function () {
    $(this).parent("div").addClass("active");
    $("div.web.button").removeClass("active");

    if ($("div.web_content").is(":visible")) {
        $("div.web_content").fadeOut();
        $("div.design_content").fadeIn();
            return false;
    } else {
        $("div.design_content").fadeIn();
    }
    window.location.hash = "#design";
    resizeWindow();

    e.returnValue = false;
    e.preventDefault();

    return false;

    alert("hello");     
});

$("div.web.button a").click(function () {
    $(this).parent("div").addClass("active");
    $("div.design.button").removeClass("active");

    if ($("div.design_content").is(":visible")) {
        $("div.design_content").fadeOut();
        $("div.web_content").fadeIn();
    } else {
        $("div.web_content").fadeIn();
    }
    window.location.hash = "#web";
    resizeWindow();

    e.returnValue = false;
    e.preventDefault();

    return false;

    alert("world");
});

@galambalazs:

无,我认为这不是什么,因为我删除了第一点,没有改变。 我只是怀疑,这是我所说的 call击功能错误,那将是pri。

www.un.org/Depts/DGACM/index_spanish.htm 所有人, 我确实为此进行了数小时的斗争,StackOverflow始终是我的最后手段。 然后,我刚刚决定尝试一些事情,而这正是骗局。

Sorry I can t upload the code so You can see what I mean by “it work now”,SECOM isdown and we have Limited resources available, we FTP port isuru now.

问题回答

Hello Anriëtte rink,你完全想在点击活动中提到“手”事件,

我想return不实就够了。

请删除以下内容:

e.returnValue = false;
e.preventDefault();

既然您有具体编号e(event)的话,你可以使用returnValue,preventDefault

我认为,如果我们不能让我们知道,这应该奏效。

Have!





相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签