我正在使用此功能更改模式按钮的 id
$('#editRevision a').click(function()
{
//clear the uploadify queue
$('#file_upload').uploadifive('clearQueue');
//change the id of the footer next button to pagesOrdered
$('#next').attr('id' , 'pagesOrdered');
});
只是为了检查 '.on('click',function()) 是否正常工作,我使用以下
//Pages ordered click
$('#pagesOrdered').on('click',function()
{
alert('Testing');
});
我的警报没有触发,但是如果我将其更改#pagesOrdered
为#next
它会触发。我需要做什么才能从 DOM 中释放 #next。
谢谢!