情况1
<%
request.getParameter("");
%>
Enter code here
案例2
Scriptlet tag begin
<jsp:scriptlet>
request.getParameter("");
</jsp:scriptlet>
Scriplet tag close
两者之间有什么区别吗?两者是同一件事。有谁比其他人更受青睐?根据
jsp2.0
应该避免使用scriptlet。他们谈论这两个吗? 最佳答案
除语法外,它们之间没有任何区别。避免scriptlet意味着您需要避免两者
关于java - <jsp:scriptlet>和<%%>之间有什么区别吗,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16955112/