English 中文(简体)
指定. change 事件到页面加载后创建的复选框
原标题:Assigning a .change event to a checkbox that gets created after the page loads
  • 时间:2012-05-25 14:15:48
  •  标签:
  • jquery

我有一个包含下拉列表的页面, 当用户从列表中选择一个选项时, 启动 ajax 调用, 并创建了一系列复选框。 有些被选中, 有些未被选中 。 我需要记录是否对复选框( 即检查/ 未检查) 做了任何修改 。 我尝试了使用以下选项, 但没有发生任何 。

我使用jQuery 1.7.1, btw。

$("input:checkbox").change(function(){ 
    //some stuff happens
});

我在那里有一个警告, 但什么都没有发生。 所以我试着把它包装成 $( document).ready (... but again, nothing.

所以现在我失落了。我不知道, 没有将 on Change=" someFusFunction ()" 插入

.append("<input type= checkbox  id= " + theData.DATA + "  value= " + theData.DATA + " >" + tempName + "<br />");

这实际上正在创建复选框。

有什么想法吗?

最佳回答

您是对的, 如果您正在使用 jQuery 1. 7. 。 请在语法下面使用 < code>. on 。

$(<closest_checkbox_container>).on( change ,  input:checkbox , function(){ 
    //some stuff happens
});

如果您使用旧版本,则使用 .delegate ,

$(<closest_checkbox_container>).delegate( input:checkbox ,  change , function(){ 
    //some stuff happens
});

< 加固 > 注: 是当 DOM 准备就绪时最接近的复选框容器 。

上述方法称为指定事件 https://stackoverflow.com/a//10539876/297641>(见授权活动下的章节)

或者,在您完成添加这些复选框后,最好写入 $(“input: checkbox”).change(函数(%)/code)。但是,如果假设所有复选框只添加一次,则更好。

问题回答

您可以根据 ajax 调用的成功响应重新组合, 或者使用“ on” (http://api.jquery.com/on/) 将更改事件与更改事件绑在一起。 使用“ on” 将把更改事件绑在任何与选择器相匹配的新元素上, 当它被添加到 DOM 时 。 (如果在 v1.7 下使用代表)





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