0

我正在尝试在 div 中附加一些 html 即

 $("#color").append('<label>Color</label><select id="sel"><option>Natural</option><option>Black</option><option>White</option><option>Navy</option></select></br><label>Quantity</label> </span><input type="text" name="qty"></br><label>Unit Price</label><div class="input-prepend"> <span class="add-on">$</span><input type="text" name="uprice"><span class="add-on">.00</span></div></br>**<a href="#" id="item-add" class="btn btn-info">Add Item</a>**');

然后尝试调用该按钮单击功能,即

$('#item-add').on('click','.(function(){

        alert("HELLO");
});

但这似乎不起作用。请帮忙。谢谢

4

3 回答 3

2

像这样替换您的事件处理程序:

$(document).on('click', '#item-add', function() {
    alert("HELLO");
});
于 2013-07-04T22:27:58.880 回答
1

看看语法错误,你能试试吗?

$('#item-add').on('click',function(){

        alert("HELLO");
});
于 2013-07-04T22:27:29.253 回答
0

尝试这样的点击事件

$('#item-add').on('click',(function(){
        alert("HELLO");
});
于 2013-07-04T22:30:02.790 回答