我真的不知道,如果这是可能的,但这里是我无法弄清楚的问题。
有一个从导致这个环节。
最终的结果链接。
http://www.website.com/index.php?a=price_range_A_B
我不能使用从,但我可以使用输入字段。 有任何想法吗?
我真的不知道,如果这是可能的,但这里是我无法弄清楚的问题。
有一个从导致这个环节。
最终的结果链接。
http://www.website.com/index.php?a=price_range_A_B
我不能使用从,但我可以使用输入字段。 有任何想法吗?
编辑:既然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
?>