用户从选择框中选择的选项,必须发送到所需的php文件(getStatus.php)可能是get方法或post方法
但不使用表单提交按钮< / b>
<select name="status">
<option value="step_1">step_1</option>
<option value="step_2">step_2</option>
<option value="step_3">step_3</option>
</select>
<a href="getStatus.php"> Go </a>
答案 0 :(得分:0)
您将拥有名为$_POST['status']
或$_GET['status']
的变量,其值等于所选option
的值。没有更多的代码,我可以告诉你。
编辑:这需要在form
中进行,action
属性设置为getStatus.php
,最好是POST
方法。如果您想将数据传递到另一个页面,除非您使用AJAX传递数据,否则将无法使用表单。为什么表格不是一种选择?
答案 1 :(得分:0)
使用public class ExtractValueFromXml {
public static void main(String[] args) throws IOException {
String lineBefore = "<key>messageID</key>";
Pattern pattern = Pattern.compile("<value>(.+?)</value>");
String numberFound = null;
try (BufferedReader br = new BufferedReader(new FileReader("file.xml"))) {
String line = null;
while ((line = br.readLine()) != null) {
if (line.matches(lineBefore)) {
Matcher matcher = pattern.matcher(br.readLine());
if (matcher.find()) {
numberFound = matcher.group(1);
break;
}
}
}
System.out.println(numberFound);
} catch (Exception e) {
}
}
}
: -
System.DirectoryServices, System.DirectoryServices.Protocols, and
system.directoryservices.accountmanagement
答案 2 :(得分:0)
<select name="status" id="status">
<option value="step_1">step_1</option>
<option value="step_2">step_2</option>
<option value="step_3">step_3</option>
</select>
<a href="#" onclick="getitem()"> Go </a>
<script>
function getitem(){
var item = document.getElementById('status').value;
location.href="getStatus.php?id="+item;
}
</script>