使用JavaScript获取价值GET或POST变量?

时间:2009-12-25 12:02:34

标签: javascript

如何使用JavaScript获取页面加载时get或post变量的值?

9 个答案:

答案 0 :(得分:53)

虽然您可以在服务器上处理请求时将其插入文档中,但无法使用Javascript获取POST变量的值。

<script type="text/javascript">
    window.some_variable = '<?=$_POST['some_value']?>'; // That's for a string
</script>

GET变量可通过window.location.href获得,有些框架甚至可以methods准备解析它们。

答案 1 :(得分:18)

您只能使用JavaScript获取URI参数。

// get query arguments
var $_GET = {},
    args = location.search.substr(1).split(/&/);
for (var i=0; i<args.length; ++i) {
    var tmp = args[i].split(/=/);
    if (tmp[0] != "") {
        $_GET[decodeURIComponent(tmp[0])] = decodeURIComponent(tmp.slice(1).join("").replace("+", " "));
    }
}

答案 2 :(得分:0)

最简单的技术:

如果省略了表单操作属性,则只需使用用于提交表单的按钮上的onClick,就可以将表单发送到相同的HTML文件,而无需实际使用GET HTTP访问。然后,表单字段位于元素数组document.FormName.elements中。该数组中的每个元素都有一个value属性,其中包含用户提供的字符串(对于INPUT元素)。它还具有id和name属性,其中包含子元素形式中提供的id和/或名称。

答案 3 :(得分:0)

这是我在stackoverflow中的第一个答案,我的英语不好。 所以我不能很好地谈论这个问题:)

我认为您可能需要以下代码来获取或标记的值。

这可能是您需要的:

HTML

<input id="input_id" type="checkbox/text/radio" value="mehrad" />

<div id="writeSomething"></div>

JavaScript

function checkvalue(input , Write) {
  var inputValue = document.getElementById(input).value;
  if(inputValue !="" && inputValue !=null) { 
    document.getElementById(Write).innerHTML = inputValue;
  } else { 
    document.getElementById(Write).innerHTML = "Value is empty";
  }
}

此外,您也可以在此功能中使用其他代码或其他代码,例如:

function checkvalue(input , Write) {
  var inputValue = document.getElementById(input).value;
  if(inputValue !="" && inputValue !=null) { 
    document.getElementById(Write).innerHTML = inputValue;
    document.getElementById(Write).style.color = "#000";
  } else {
    document.getElementById(Write).innerHTML = "Value is empty";
  }
}

,您可以通过以下事件在页面中使用此功能:

<div onclick="checkvalue('input_id','writeSomthing')"></div>

我希望我的代码对您有用

<Mehrad Karampour>

答案 4 :(得分:-1)

当我遇到问题时,我将值保存到隐藏的输入中:

在html正文中:

    <body>
    <?php 
    if (isset($_POST['Id'])){
      $fid= $_POST['Id']; 
    }
    ?>

...然后将隐藏的输入放在页面上并使用php echo

写入值$ fid
    <input type=hidden id ="fid" name=fid value="<?php echo $fid ?>">

然后在$(文件).ready(function(){

    var postId=document.getElementById("fid").value;

所以我在php和js中得到了我隐藏的url参数。

答案 5 :(得分:-1)

用很少的PHP很容易。

HTML部分:

<input type="text" name="some_name">

的JavaScript

<script type="text/javascript">
    some_variable = "<?php echo $_POST['some_name']?>";
</script>

答案 6 :(得分:-1)

// Captura datos usando metodo GET en la url colocar index.html?hola=chao
const $_GET = {};
const args = location.search.substr(1).split(/&/);
for (let i=0; i<args.length; ++i) {
    const tmp = args[i].split(/=/);
    if (tmp[0] != "") {
        $_GET[decodeURIComponent(tmp[0])] = decodeURIComponent(tmp.slice(1).join("").replace("+", " "));
        console.log(`>>${$_GET['hola']}`);
    }//::END if
}//::END for

答案 7 :(得分:-1)

/**
* getGET: [Funcion que captura las variables pasados por GET]
* @Implementacion [pagina.html?id=10&pos=3]
* @param  {[const ]} loc           [capturamos la url]
* @return {[array]} get [Devuelve un array de clave=>valor]
*/
const getGET = () => {
    const loc = document.location.href;

            // si existe el interrogante
            if(loc.indexOf('?')>0){
            // cogemos la parte de la url que hay despues del interrogante
            const getString = loc.split('?')[1];
            // obtenemos un array con cada clave=valor
            const GET = getString.split('&');
            const get = {};

            // recorremos todo el array de valores
            for(let i = 0, l = GET.length; i < l; i++){
                const tmp = GET[i].split('=');
                get[tmp[0]] = unescape(decodeURI(tmp[1]));
            }//::END for
            return get;
        }//::END if 
}//::END getGET

/**
* [DOMContentLoaded]
* @param  {[const]} valores  [Cogemos los valores pasados por get]
* @return {[document.write]}       
*/
document.addEventListener('DOMContentLoaded', () => {
    const valores=getGET();

    if(valores){
            // hacemos un bucle para pasar por cada indice del array de valores
            for(const index in valores){
                document.write(`<br>clave: ${index} - valor: ${valores[index]}`);
            }//::END for
        }else{
            // no se ha recibido ningun parametro por GET
            document.write("<br>No se ha recibido ningún parámetro");
        }//::END if
});//::END DOMContentLoaded

答案 8 :(得分:-1)

给定一个字符串returnURL,就像http://host.com/?param1=abc&param2=cde一样,这是我的答案。这是相当基础的,因为我开始使用JavaScript(这实际上是我在JS中的第一个程序的一部分),并使理解更简单而不是棘手。

注释

  • 没有值的健全性检查
  • 只需输出到控制台 - 您就可以将它们存储在数组或其他内容中
  • 这仅适用于GET,而不适用于POST

    var paramindex = returnURL.indexOf('?');
    if (paramindex > 0) {
        var paramstring = returnURL.split('?')[1];
        while (paramindex > 0) {
            paramindex = paramstring.indexOf('=');
            if (paramindex > 0) {
                var parkey = paramstring.substr(0,paramindex);
                console.log(parkey)
                paramstring = paramstring.substr(paramindex+1) // +1 to strip out the =
            }
            paramindex = paramstring.indexOf('&');
            if (paramindex > 0) {
                var parvalue = paramstring.substr(0,paramindex);
                console.log(parvalue)
                paramstring = paramstring.substr(paramindex+1) // +1 to strip out the &
            } else { // we're at the end of the URL
                var parvalue = paramstring
                console.log(parvalue)
                break;
            }
        }
    }