-3

我不确定这是否可能,但这是我无法弄清楚的问题。

从这个链接中得到一个结果。

最终结果链接。

http://www.website.com/index.php?a=price_range_A_B

我不能使用 from 但我可以使用输入字段。有任何想法吗?

4

1 回答 1

1

编辑:由于 OP 改变了问题,我在下面更新了我的答案。

我举了一个例子来说明你如何做到这一点。

<?php  
    $action_path = "index.php";
    ?>

    <script type="text/javascript">
        function submitData() {
            var a = null;
            var _A = document.getElementById("_A").value;
            var _B = document.getElementById("_B").value;

            a = "price_range_" + _A + "_" + _B;

            window.location.href = "<?php echo $action_path; ?>?a=" + a;

            return;
        }
    </script>

    <input type="text" id="_A" maxlength="6" size="5" />
    <input type="text" id="_B" maxlength="6" size="5" />
    <input type="button" value="Submit" onclick="submitData();" />

    <?php
    // the code to be put after </form> goes here
?>
于 2012-12-10T05:04:39.330 回答