-5

我用 jquery 添加了动态输入字段。现在我想用jquery“focusout”来做事件,但它没有触发......有什么想法吗?

这个输入是用 jQuery 动态创建的。

<input type="text" id="input_id" name="input_name" value="" />

$("#input_id").focusout(function(){
     alert("test");
});

已解决的更新:

$("#input_id").live('focusout', function() {
4

2 回答 2

0

在创建输入字段时,为输入元素提供一个 id。<input type='text' id='myfield' />现在你可以像下面这样编写聚焦/模糊的代码

$("#myfield").blur(function(){
    // Your code here
   // If you want to Get the value from that field ?
   var val1 = $("#myfield").val();
});
于 2013-03-19T17:21:53.310 回答
0

你正在寻找的是

$("#input_id").live('focusout', function() {
于 2013-03-19T17:31:00.040 回答