您好我想在javascript中使用jsp变量值我如何使用
这是我的代码。
Demo.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
String plane="A";
%>
<script>
var planB=<%=plane%>;
c
if(planB==B){
document.write("shakti");
}else{
document.write("sharma");
}
</script>
</body>
</html>
如何获得所需的输出
答案 0 :(得分:1)
使用以下内容更改脚本块:
<script>
var planB = '<%=plane%>';
if(planB === 'B'){
document.write("shakti");
} else{
document.write("sharma");
}
</script>
的变化: