关于flush和clear错误显示的问题
代码入3-5练习题
<%
out.println("床前明月光");
out.flush();
out.clear();
out.println("疑是地上霜");
%>
根据html中代码顺序执行的规则,理论上会显示出:床前明月光
但在实际测试中(chrome,Safari)都不会给出任何网页显示
代码入3-5练习题
<%
out.println("床前明月光");
out.flush();
out.clear();
out.println("疑是地上霜");
%>
根据html中代码顺序执行的规则,理论上会显示出:床前明月光
但在实际测试中(chrome,Safari)都不会给出任何网页显示
2017-05-02
举报