5

http://jsfiddle.net/YsnhT/2/

追加后,Jquery 事件不起作用。单击保存按钮后,我需要 textarea 的值。

$('.span8')
    .on('click',
            '.btn',
            function() {
        var input = $("#textarea").val();
        alert(input);
    });

$('body').on('click','#createNote',function() {                $('.span8').empty();
                $('.span8').append('<button type="button" class="btn" style="float: right; margin-right: 8px;background-color:#dddddd;font-family:Roboto Slab;color: black" id="save" data-loading-text="Saving...">Save</button><div class="hero-unit"><input type="text" style="width: 100%" id="title" placeholder="Title"/>'+ 
                '<textarea contenteditable="true" id="textarea" class="textarea" placeholder="Enter text ..."style="width: 100%;">dd</textarea></div>');

            });

HTML:

<div class="span8"></div>
4

5 回答 5

15

由于#save是动态创建的,请使用以下处理程序:

$(document).on('click', '#save' ,function() {
    //do stuff
});

更新小提琴:http: //jsfiddle.net/tymeJV/YsnhT/3/

您还应该像这样制作“单击”按钮处理程序,否则它不会在新创建的#click按钮上触发。

于 2013-05-09T12:44:54.293 回答
3

只需以动态格式委托事件:

$(document).on('click', '#save' ,function() {
    //do stuff
})

也许对以下情况也这样做:

$(document).on('click', '#click' ,function() {
    //do stuff
})
于 2013-05-09T12:46:10.380 回答
1

保存在这里动态创建。所以尝试使用on

$(document).on('click', '#save' ,function() {
});
于 2013-05-09T12:45:28.300 回答
0

添加元素后,您需要重新绑定处理程序或使用 jQuery 的 live() 函数,如下所示:

$('.span8 .btn').live('click', function() {
    var input = $("#textarea").val();
    alert(input);
});
于 2013-05-09T12:47:16.377 回答
0

检查这个...

$('.btn').click(function() {

 var input = $("#textarea").val();
    alert(input);

});

于 2013-05-09T12:56:12.300 回答