4

我正在研究一个搜索引擎,但我在方法方面遇到了非常严重的GET问题POST

我使用一个<input type="button" />来避免每次按下按钮时刷新页面。

按下按钮后,我将显示结果(google_map、monumet 图片、规格)。

现在的问题是我想通过按此按钮提交并显示表单值 + 结果(google_map、monumet 图片、规格)。

这是一个问题,因为<input type="button" />不提交表单值,我真的被卡住了。

4

2 回答 2

3

当然,这是一个适合您的工作示例:

索引.php

<!DOCTYPE html>
<html>
<head>
    <title>Working Example</title>
</head>
<body>

<form id="search-form">
    <input type="text" name="text1" id="text1" value=""><br>
    <input type="text" name="text2" id="text2" value=""><br>
    <input type="text" name="text3" id="text3" value=""><br>
    <input type="button" id="search-button" name="search-button" value="search">
</form>

<div id="response"></div>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
    $(document).ready(function(){
        $('#search-button').click(function(){
            $.ajax( {
                type: "GET",
                url: 'response.php',
                data: $('#search-form').serialize(),
                success: function(response) {
                    $('#response').html(response);
                }
            } );
        });
    });
</script>

</body>
</html>

响应.php

<?php

echo "text1: " . $_GET['text1'] . "<br>";
echo "text2: " . $_GET['text2'] . "<br>";
echo "text3: " . $_GET['text3'] . "<br>";

echo "your response ...";

在响应中,您返回任何响应,以及表单字段。

于 2013-09-15T15:30:56.053 回答
1
onClick="document.getElementById('FormName').submit();"
于 2013-09-15T15:18:04.967 回答