0

我有一个 html 页面在其中一个文本框

<input type="text" id="region&activity">

<input type="button" id="result" value="submit">

在我输入的文本框中,Race in Gujarat我想将此值存储到数组中
Race在一个数组和Gujarat另一个数组中
帮助我或给出一些想法来做到这一点。
谢谢

4

5 回答 5

2

试试这个

<?php
 $abc='race in gujrat';
 list($event,$state) = split('in',$abc);
  echo $event;
 echo $state;
 ?>

并将该字符串存储在数组中

于 2013-03-28T10:00:04.070 回答
1

使用 PHP

此结果假定您将它们拆分为空格后的数组。

$text  = "Race in Gujarat";
$result =  explode(" ", $text);
echo $result[0];  //Race
echo $result[1];  //in
echo $result[2];  //Gujarat
于 2013-03-28T09:54:19.517 回答
0

由于您的问题没有明确定义,我假设您希望删除“in”一词,并将字符串拆分为空格字符上的单独数组。

怎么样(为方便起见使用jQuery):

var splitRegion=$("#region&activity").val().replace(/in /g," ").split(" ");
myArray1.push(splitRegion[0]);
myArray2.push(splitRegion[1]);

顺便说一句,我认为与号 (&) 是 id 中的非法字符。

于 2013-03-28T09:52:31.173 回答
0

如果您想使用 java 脚本,请执行以下操作:-

<script>
    $(function(){
$("#filter").click(function(){
    var name = $('#select').val();
    alert(name);
    $.ajax({
        type: "POST",
        data: {"name":name} ,
        url: "array.php",
        async: false,       
        success: function(result) { 
        alert(result);
        $("#result").text(result);
        } 
    });   


    });
});
    </script>

这是您的 html 代码:-

</head>
<body>
    <input type="text" id="select">
    <input  type="button" id="filter" name="button" value="Search">
    <div id="result">
    </div>
</body>
</html>

这是array.php:-

<?php
$name= $_POST['name'];
$result =  explode("in", $name);
foreach($result as $row){
echo $row;
}
?>
于 2013-03-28T10:47:30.653 回答
0

试试这个:-

<?php
 $abc= $_POST['name'];
 list($event,$state) = explode('in',$abc);

 $array1[]=$event;
 $array2[]=$state;
 foreach($array1 as $city)
{
echo $city;
}
foreach($array2 as $st)
{
echo $st;
}
 ?>
于 2013-03-28T11:31:40.447 回答