我正在尝试根据选择显示 txt 文件中的数据值
<?php
$lines = file('customers.txt');
?>
<select class="select" style="width: 250px;" name="mylist" id="mylist" required="">
<option selected="selected" value="">Select Your Company</option>
<?php foreach($lines as $line){
$customers = explode(',', $line);
echo "<option value='".$customers[0]."'>$customers[0] </option>"; }?>
</select>
<input type="text" id="inputid" placeholder="Company Name">
和我尝试的js
<script>
$(".select").change(function(){
var res = $(".select").find(":selected").map(function () {
if($(this).val()!="")
return $(this).text();
else
return "";
}).get().join("");
$("#inputid").val(res);
});
</script>
我的customers.txt数据文件:-
客户1、街道、分机号、邮政编码
Customer2,B 街道,B 分机,B 邮政编码
Customer3,C 街,C 分机,C 邮政编码
...ETC
在选择 Customer1 时,我想显示在 :-
Customer1
A 街道
A 分机号
A 邮政编码
人到中年有点甜
慕姐8265434