1 <html><head><script language=javascript> function out(obj) { var i = obj; if (i == 0) document.location.href = "t.html"; document.body.innerHTML = i; i--; setTimeout("out(" + i + ")", 1000); }</s…
解决Intellij Idea下修改jsp页面不自动更新 On frame deactivation:被设置成了Do nothing 解决办法:改为Update resources(更新资源)或者Update classes and resource(更新class文件和资源) 特别强调,你可能没有上边两个选项,应设置下图 select artifacts will be deployed at server startup 最后一步:…