English 中文(简体)
不得重载频率
原标题:Jquery must not be reloading
  • 时间:2010-09-04 04:08:26
  •  标签:
  • jquery

页: 1

如果你去这里,就会看到产品,左边的每一产品就有一个更宽的州。 在该纽扣上,你获得了巨大的滚动。

顶端的降水量,即有焦炭的负荷,用新内容更新整页......如果在你选择上下游至任何类型的“Fast food Pos”之后,你再次点击。 我错失了这样做的原因。

$("#main_content").load("function.php?type="+type+"piz&count=5");

这就是当用户选择减员时发出的呼吁。

这里是《角度法》。

    // blue item expand
$( .item-blue .btn-expand ).click(function () {

    var btn = $(this);
    $(this).parent().prev().slideToggle(function () {
        btn.toggleClass( btn-expand-h );
    });
    return false;
});
最佳回答

你们必须把处理点击的“更多”事件重新整合起来。

页: 1 Load,但你没有在点击菜单上添加。

$( .select-big ul li a ).click(function () {
    // your code.....

    // asynchronous task wrong way...
    $("#main_content").load("function.php?type="+type+"&count=5");

    // this is the right way...
    $("#main_content").load("function.php?type="+type+"&count=5", function(){
        $( .item-blue .btn-expand ).click(function () {
            var btn = $(this);
            $(this).parent().prev().slideToggle(function () {
                btn.toggleClass( btn-expand-h );
            });
            return false;
        });

        // plus any other code you need to run once
        // the data from the server is "served"
    });

    // your code...
});

页: 1 因此,将事件与“更多”联系联系起来的事件已经与“原始”<代码>DOM的内容背道而驰。

问题回答

我猜测,因为当你重载内容时,你不会重新约束你所取代的内容。

修改:

$("#main_content").load("function.php?type="+type+"piz&count=5");

:

var successCallback = function(responseText, textStatus, XMLHttpRequest) {
    // rebind your event handlers here
    $( .item-blue .btn-expand ).click(function () {
        var btn = $(this);
        $(this).parent().prev().slideToggle(function () {
            btn.toggleClass( btn-expand-h );
        });
        return false;
    });
};

$("#main_content").load("function.php?type="+type+"piz&count=5", successCallback );

尼斯网站:

由于您使用jQuery 1.4.x,请看一下j Query slive()。 它请你避免在经过美国宇宙航空研究开发机构装货后人工进行整合的必要性。 因此,你的法典可以修改如下:

$( .item-blue .btn-expand ).live( click , function () {
  var btn = $(this);
  $(this).parent().prev().slideToggle(function () {
    btn.toggleClass( btn-expand-h );
  });
  return false;
});

在你接手后,将自动地将事件加以整合。 自1.3岁起就一直生活在 j里。





相关问题
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: &...

热门标签