jQuery刷新div内容,并对刷新后元素绑定事件。$(document).on()

给id=zt的元素绑定点击事件

点击刷新id=ps_list中类容(内容中含有id=zt元素)

把zt的点击事件委托到了document上,这样就不用考虑事件是否能绑定到新加元素上

代码如下:

$(document).on("click", "#zt", function() {var ps_list = $("#ps_list").html();
        $("#ps_list").html(ps_list);
    })
时间: 2024-10-13 12:48:27

jQuery刷新div内容,并对刷新后元素绑定事件。$(document).on()的相关文章

jQuery 清除div内容

$.ajax({            url: "SearchSN.aspx",            data: "SN=" + $("#txtStorageSN").val(),            cache: false,            success: function (html) {                $("#showResult").empty();                $(&

jquery 如何给js加载的元素绑定事件

jquery可在生成元素时给元素绑定上事件 var html="<div class="zoomProps"><img src="1.jpg"></div>"; $('#wrapper').append(html).find(".zoomProps").dblclick(function(){ $(this).remove(); }); append 之后给class=zoomProps的元

WEB前端技巧之JQuery为动态添加的元素绑定事件

jquery 为动态添加的元素绑定事件 如果直接写click函数的话,只能把事件绑定在已经存在的元素上,不能绑定在动态添加的元素上 可以用delegate来实现 .delegate( selector, eventType, handler ) 例如示例: $('someUlSelector').delegate('someLiSelector','click',function(){ //codes... //$(this) for the current jquery instance of

jQuery改变div内容并增加css样式

var account = JobCircle.Util.Common.getSession('account'); if(!account){ $("#iflogin").html('<a href="login.html">登陆</a>'); $("#iflogin >a").css({"color":"#ccc","font-size":"1

jQuery元素绑定事件

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <div id="d1" class="c">嘎嘎</div> <div id="d2" class="c">

jquery为元素绑定事件

语法 $(selector).live(event,data,function) 参数event 必需,规定附加到元素的一个或多个事件.由空格分隔多个事件,必须是有效的事件.data 可选,规定传递到该函数的额外数据.function 必需,规定当事件发生时运行的函数. 1 <html> 2 <head> 3 <script type="text/javascript" src="/jquery/jquery.js"></s

jquery绑定事件以及js绑定事件

jquery绑定事件: <div id="click1">bind事件</div><!--如果有动态元素,不能触发--> <div id="click2">one</div><!--只能点击一次--> <div id="click3">live</div><!--已经弃用--> <div id="click4"&g

Jquery插件 防刷新倒计时 “点击获取验证码后60秒内禁止重新获取

Jquery插件实现"点击获取验证码后60秒内禁止重新获取(防刷新)" 效果图: 先到官网(http://plugins.jQuery.com/cookie/)下载cookie插件,放到相应文件夹,代码如下: 1 <style type="text/css"> 2 * {margin: 0; 3 padding: 0; 4 font-family: "Microsoft Yahei"; 5 } 6 .captcha-box { 7 w

jquery的div局部刷新

//div的局部刷新 $(".dl").load(location.href+" .dl"); 全页面的刷新方法 window.location.reload()//刷新当前页面. parent.location.reload()//刷新父亲对象(用于框架) opener.location.reload()刷新父窗口对象(用于单开窗口) top.location.reload()//刷新最顶端对象(用于多开窗口)