Shenglian / -WORK_TIP

工作上小技巧
4 stars 1 forks source link

[js][html] iframe with form #158

Open Shenglian opened 5 years ago

Shenglian commented 5 years ago
<iframe name="theID"></iframe> 
<form name="jumpform" target="theID" action="test.html">
<input type="submit" value="提交">
</form>

target屬性:
_blank ---------- 新開窗口
_self -----------自身
_top ------------主框架
_parent ---- -----父框架
自定義名字-----出現於框架結構,將會在該名稱的框架內打開鏈接

Q: 跨域是无法解决的
A: window.frames, html5的on/postmessage一样。可以利用事件进行通讯