この関数でモーダルボタンの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をリリースするにはどうすればよいですか。
ありがとう!