0

我有一个简单的表单,我使用 id 为 new 的按钮清除它,但我想要更新数据的按钮也兼作创建新按钮。

这是按钮http://jsfiddle.net/tde8Q/6/

这是代码

$("#new").click(function(){
$('#id').val("");
$('#firstname').val("");
$('#lastname').val("");
$('#city').val("");
$('#continent').val("");
$("#neworupdate").prop('value', 'Save New').attr('id', 'createnew');
});


$("#createnew").click(function(){
alert('this worked');
});

我将如何使用 createnew id?

4

1 回答 1

1

你需要使用.on()

$(document).on('click','#createnew',function(){
  alert('this worked');
});  

它现在对我有用 http://jsfiddle.net/tde8Q/7/

于 2013-06-01T11:15:56.603 回答