我有一个带有单选按钮列表的 html 页面。根据用户的输入,我需要提供各种输入选项。我已经为各种选项创建了 JSP 页面并尝试使用 javascript。我能够将检查的输入传递给js脚本,但无法继续。我正在使用struts2框架。有人可以建议一些方法吗
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@taglib uri="/struts-tags" prefix="s"%>
<html>
<head>
<script language="JavaScript" type="text/JavaScript">
function getvalues(input){
document.write(input);}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Register Page</title>
</head>
<body>
<s:form action="Register">
<s:select name="product" list="productList" listKey="productName"
listValue="productName" headerKey="0" headerValue="Select"
label="Select a product" />
<s:radio name="option" label="Select Change:" list="{'option1','option2','option3'}" onclick="getvalues(this.value)" />
<s:submit />