gpt4 book ai didi

javascript - 使用 PHP 显示名称

转载 作者:行者123 更新时间:2023-11-27 23:07:06 26 4
gpt4 key购买 nike

<html>
<head>
<script>
function addstafflist()
{
for(var i = 0; i < document.getElementById("stafflist").options.length; i++)
{
if(document.getElementById("stafflist").options[i].selected)
{
var staffname = document.getElementById("stafflist").options[i].text;
var selectedstaffnamelist = document.getElementById("selectedstafflist");
var found = false;

for(var j = 0; j < selectedstaffnamelist.length; j++)
{
if(selectedstaffnamelist[j].text == staffname)
{
found = true;
break;
}
}

if(!found)
{
var option = document.createElement("option");
option.text = staffname;
selectedstaffnamelist.add(option);
}
}
}

</script>
</head>

<body>
<form action="test2.php" method="post">
<table border="0" width="300" style="border-collpase:collapse">
<tr>
<td width="50">
<select id="stafflist" name="stafflist[]" style="width:70px;" multiple>
<option value="ali@gmail.com">ali</option>
<option value="abu@gmail.com">abu</option>
<option value="ahmad@gmail.com">ahmad</option>
</select>
</td>

<td width="30">
<input type="button" name="add" value=">>" onclick="addstafflist()" />
</td>

<td>
<select id="selectedstafflist" name="selectedstafflist[]" style="width:70px;" multiple>
</select>
</td>
</tr>

<tr height="20">
<td colspan="3">
<input type="submit" name="submit" value="Show" />
</td>
</tr>
</table>
</form>
</body>
</html>

<?php
if(isset($_POST['submit']))
{
//[HERE]
}
?>

从上面的代码中,当我从下拉列表中选择 ali、abu 并单击“显示”按钮时,我想在单击后使用 PHP 显示他们的电子邮件地址(即 ali@gmail.com、abu@gmail.com) [此处] 部分中的显示按钮。有人能帮我吗?

最佳答案

将以下代码添加到 foreach 中,遍历所有已发布的员工列表并回显电子邮件;

<?php
if(isset($_POST['submit']))
{
foreach($_POST['stafflist'] as $email){
echo $email . "<br/>";
}
}
?>

虽然我不确定你用所有的 JS 做什么。

关于javascript - 使用 PHP 显示名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36494125/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com