1
我得到一個腳本,在點擊鏈接後創建一個帶有輸入文件的窗體,但是當我加載創建窗體的函數時,立即調用成功回調函數。你有沒有遇到同樣的問題?jquery窗體:調用成功回調,而窗體沒有提交
這裏是我的功能:
html = $('<div>');
form = $('<form method="post" action="">');
form.append('<input type="file" name="image" value=""> <input type="submit" value="OK">');
html.html('Ajouter une nouvelle image : <br>');
html.append(form);
$(options.area).prepend(html);
ajaxOptions = { iframe : 'true',success: function(res) { alert(res); } };
$(options.area).find('form').ajaxSubmit(ajaxOptions);
感謝您的幫助!
我的錯!非常感謝 – Tom 2010-01-19 20:22:46