我有一个 html 页面在其中一个文本框
<input type="text" id="region&activity">
<input type="button" id="result" value="submit">
在我输入的文本框中,Race in Gujarat
我想将此值存储到数组中
。Race
在一个数组和Gujarat
另一个数组中
帮助我或给出一些想法来做到这一点。
谢谢
我有一个 html 页面在其中一个文本框
<input type="text" id="region&activity">
<input type="button" id="result" value="submit">
在我输入的文本框中,Race in Gujarat
我想将此值存储到数组中
。Race
在一个数组和Gujarat
另一个数组中
帮助我或给出一些想法来做到这一点。
谢谢
试试这个
<?php
$abc='race in gujrat';
list($event,$state) = split('in',$abc);
echo $event;
echo $state;
?>
并将该字符串存储在数组中
使用 PHP
此结果假定您将它们拆分为空格后的数组。
$text = "Race in Gujarat";
$result = explode(" ", $text);
echo $result[0]; //Race
echo $result[1]; //in
echo $result[2]; //Gujarat
由于您的问题没有明确定义,我假设您希望删除“in”一词,并将字符串拆分为空格字符上的单独数组。
怎么样(为方便起见使用jQuery):
var splitRegion=$("#region&activity").val().replace(/in /g," ").split(" ");
myArray1.push(splitRegion[0]);
myArray2.push(splitRegion[1]);
顺便说一句,我认为与号 (&) 是 id 中的非法字符。
如果您想使用 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;
}
?>
试试这个:-
<?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;
}
?>