Firefox (only) Dynamic Form Action Not Working

后端 未结 1 528
余生分开走
余生分开走 2021-01-27 13:56

Console is returning blank for the action attr. I\'ve moved the:

$(\'#file_upload\').attr(\'action\',\'io.cfm?action=updateitemfile&item_id=\'+$(\'.agenda-mo         


        
相关标签:
1条回答
  • Based on this comment on the attr() documentation, it appears that action must be capitalized to work in Firefox:

    $('#file_upload').live('submit',function(event){
        $(this).attr('ACTION','io.cfm?action=updateitemfile&item_id='+$('.agenda-modal').attr('data-defaultitemid'));
    });
    

    I've got money that says that breaks it in IE...

    0 讨论(0)
提交回复
热议问题