常见的html标签就那4个属性,但如果想在指定的iframe框架中打开指定的html,可以有如下代码(例子)实现
代码语言:javascript复制<form action="http://reg.domain.com/login" method="post" target="hidden_iframe">
<input type="text" name="user" />
<input type="password" name="password" />
<button type="submit">登录</button>
</form>
------------------
一个iframe,对应的name
<iframe style="display:none" frameborder="0" scrolling="no" name="hidden_iframe"></iframe>
其中href对应的target名字和Iiframe框架对应的名字都是"hidden_iframe"