无刷新方式上传文件

1.

<form action="http://localhost:8889/warehouse/control/barcodeToProductInventory" id="waiguan_form" name="waiguan_form"

enctype="multipart/form-data" method="post" target="waiguan_frame" >

<input type="file" id="file" name="file"/>

<iframe name="waiguan_frame“></iframe>

<input type='button' value='test' onclick='alert("test");'/>

<input type='submit'/>
<form>

   

将form的targat设为iframe,这样form提交的时候就由iframe负责提交过去了,而外层页面就不会被提交。

 

target属性: _blank ---------- 新开窗口 _self ----------- 自身 _top ------------ 主框架 _parent --------- 父框架 自定义名字 ----- 出现于框架结构,将会在该名称的框架内打开链接

 

你可能感兴趣的:(框架)