【发布时间】:2011-09-08 04:49:42
【问题描述】:
好的,我在这些方面完全是菜鸟。但我需要在我网站的不同页面中使用 iframe 打开搜索结果。有人已经这样做了吗?
示例,当您点击 go 时,它将重定向到我网站的不同页面,并在 iframe 中搜索结果。
代码是这样的:
<html>
<head>
<title>Google Preview</title>
<style>iframe { width: 800px; height: 600px }</style>
</head>
<body>
<form method='get' action='http://www.google.com/search' target='results'>
<label for='q'>Google Search:</label>
<input name='q'/>
<input type="submit" value="Go">
</form>
<script>
try {
document.write('<iframe name="results"></iframe>');
} catch (e) {
alert(e);
}
</script>
</body>
</html>
提前致谢!
【问题讨论】: