它在所有其他浏览器中工作,之前它正在使用IE8,但我做了一些代码清理并移动了一些东西,现在它将这个表单提交给它自己。这是一个“ajax”上传者(是的,不是真的是ajax,但你知道我的意思)
这是JS:
function file_upload($theform,item_id){
$theform.attr('ACTION','io.cfm?action=updateitemfile&item_id='+item_id);
if($theform.find('[type=file]').val().length > 0){
$('iframe').one('load',function(){
$livepreview.agenda({
action:'get',
id:item_id,
type:'item',
callback:function(json){
$theform.siblings('.upload_output').append('<li style="display:none" class="file-upload"><a target="blank" href="io.cfm?action=getitemfile&item_file_id='+json[0].files.slice(-1)[0].item_file_id+'">'+json[0].files.slice(-1)[0].file_name+'</a> <a style="color:red" title="Delete file?" href="#deletefile-'+json[0].files.slice(-1)[0].item_file_id+'">[X]</a></li>').children('li').fadeIn();
$theform.siblings('.upload_output').find('.nofiles').remove();
}
});
//Resets the file input. The only way to get it cross browser compatible as resetting the val to nothing
//Doesn't work in IE8. It ignores val('') to reset it.
$theform.append('<input type="reset" style="display:none">').children('[type=reset]').click().remove();
});
}
else{
$.alert('No file selected');
return false;
}
}
/* FILE UPLOAD EVENTS */
//When they select "upload" in the modal
$('.agenda-modal .file_upload').live('submit',function(event){de
file_upload($('.agenda-modal .file_upload'),$('.agenda-modal').attr('data-defaultitemid'));
});
如果您不知道,ACTION
必须大写才能使Firefox正常运行。此外,我知道它确实提交给它自己,因为iframe显示其内部的当前页面并且所有脚本再次加载。此外,在.live()
中,添加return false;
无效。
以下是HTML以防:
<label>Add Attachment</label>
<form class="file_upload" method="post" enctype="multipart/form-data" target="upload_target" action="">
<input name="binary" id="file" size="27" type="file" /><br />
<br><input type="submit" name="action" value="Upload" /><br />
<iframe class="upload_target" name="upload_target" src="" style="display:none"></iframe>
</form>
<label>Attachments</label>
<ul class="upload_output">
<li class="nofiles">(No Files Added, Yet)</li>
</ul>
答案 0 :(得分:0)
你应该在“提交”处理程序的末尾 return false;
。
<iframe>
究竟在哪里定义? 编辑 - 哦,我看到了。
再次编辑 - 好的,我知道我的信誉在这里有点可笑,但我建议在<iframe>
添加“id”属性(使用“upload_target”作为id值)。每隔一段时间我就会弄清楚“姓名”和“身份证”中的哪一个很重要(以及何时/为何),但这些信息只持续了一个小时左右,然后我的大脑反复驳回它。 (“重要”我的意思是<iframe>
元素。)
答案 1 :(得分:0)
应该将表单发送给自己。
考虑按钮属于提交类型(即自动提交表单),并且表单操作为空(即自行发送)。
但是,正如你已经正确完成的那样,提交处理程序可能会导致表单根本不提交(我要问的是,首先提交的内容是什么?但是已经超过了这一点)
无论如何,你应该停止事件传播并在事件处理程序中返回false。