如何使用表单发布更改iframe的内容

时间:2014-11-01 07:16:33

标签: php html iframe

好的,我有这段代码:

<body>
    <div id="top_bar">
        <a target="content_frame" href="main/index.php"> Home | </a>
        <a target="content_frame" href="faq/index.html"> FAQ | </a>
        <a target="content_frame" href="contact/index.html"> Contact </a>
        <div id="search">
            <form method="POST" action="/php/search.php">
                Search: <input type="text" name="search_box">
                <input id="search_button" type="submit" value="Search">
            <form>
        </div>
    </div>
    <iframe name="content_frame" src="main/index.php"></iframe>
</body>

网页看起来像这样: My webpage

当有人在search_box中写入内容并按下ENTER时,如何改变整个页面但是它会作用于iframe?

1 个答案:

答案 0 :(得分:1)

设置表单的目标属性应该完成工作:)

<form method="POST" action="/php/search.php" target="content_frame">
    Search: <input type="text" name="search_box">
    <input id="search_button" type="submit" value="Search">
<form>