Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,所以我有一个只加载一个简单表单的基本网页。
此表单提交一个文本字段,一个单选按钮选择。很简单。
它将它发送到使用数据的网页并根据数据显示网页。
我想知道如何将这些数据提交到位于不同服务器上的网页,并显示该网页随后将在 iframe 中显示的内容。
我问的原因是我只希望有一个几乎像标题一样的 iframe,该标题始终锚定在其生成的网页顶部并带有广告。
希望这足够清楚。我似乎找不到我要找的东西:(
感谢大家!
你在找这个吗?该表单将针对具有域的 iframehttp://example.com并获取其 post 值
http://example.com
<form action="#" method="post" target="iframe_name"> <input type="submit" name="post" value="Post"> </form> <iframe src="http://example.com" name="iframe_name"></iframe>