在<form>中使用iframe

时间:2015-06-19 14:56:13

标签: html iframe

是否可以将iframe置于form之内?

enter image description here

我尝试过以下操作但不起作用:

<form action = "etc">

<iframe>
 <input type="text" name="text1">Input<br>
 <input type="text" name="text1">Input<br>
 <input type="text" name="text1">Input<br>
 <input type="text" name="text1">Input<br>
</iframe>

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

但我怀疑这不是这样做的方法。有什么指针吗?

1 个答案:

答案 0 :(得分:2)

根据你的评论,你想要一个带滚动的元素,尝试如下:

HTML:

<fieldset id="lotsOfInputs">
 <input type="text" name="text1">Input<br>
 <input type="text" name="text1">Input<br>
 <input type="text" name="text1">Input<br>
 <input type="text" name="text1">Input<br>
</fieldset>

CSS:

#lotsOfInputs {
    max-height: 200px;
    with: 100%;
    overflow: scroll;
}