当我开始在铬地址栏中键入localhost:3000/时,它会在单击"Enter“按钮之前启动对应用程序/索引的GET请求。在我的服务器日志中,我看到了
Started GET "/" for 127.0.0.1 at 2015-09-20 23:22:28 +0300
ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
Processing by ApplicationController#
我想改变<:jsp include page:"includes.jsp">与输入按钮点击。例如,我有一个包含<jsp include page:"includes.jsp">的jsp页面"index.jsp“。在另一个jsp页面中,"themes.jsp“。是否可以将<jsp include page:"includes.jsp">编辑为其他格式,如<jsp include page:"includes_blue.jsp">?
我在其他流行的浏览器中没有这个问题。在JSP页面(让我们称之为Page1.jsp)中,我单击一个表单,它转到另一个页面。当我单击Opera的Back按钮时,它会返回到Page1.jsp,但是没有重新启动JavaScript或JSP代码。例如,
<!-- Inside header tag -->
<script language="JavaScript>
alert("Does this work in Opera?");
</script>
一个简单的警报语句不会触发。服务器端代码也是如此。然而,其他流行的桌面浏览器没有问题。