有人能帮我解决我的jsp代码的简单问题吗?下面是我使用JavaScript编写的jsp页面
function fid()
{
var id=document.getElementById("id").value;
alert(id);
<%
String demo=id; // store id value of java script but not working
or find(id); // or call a function wit
作为一种良好的编码实践,我们不应该在jsp中使用scriptlet。我想在jsp中为其他开发人员编写注释,但不想在页面转换为html时向客户端显示。
我们是否可以使用jstl或El编写以下代码?
<%
//for perfromance we redirect control to this jsp
//as this jsp don't load unused dom ,css , js
%>
我在网上找不到任何东西?