
js
vish23n
有生之年
展开
-
org.apache.tomcat.util.http.Parameters processParameters
2013-12-16 12:31:26 org.apache.tomcat.util.http.Parameters processParameters 警告: Parameters: Invalid chunk '' ignored. 如果你爆这样的错,很有可能你没有加callback函数 $.ajax({ url:rcUri+"/roomApi/updateRoo...原创 2013-12-16 12:35:32 · 183 阅读 · 0 评论 -
iframe刷新父页面
iframe页面是内嵌到父页面的,当点击iframe页面的服务器控件时,默认只刷新iframe页面,父页面是不会刷新的。若想刷新父页面,可以使用js来实现,如 1. parent.location.reload(); 这种方法会重新加载整个页面。但如果要在原页面的基础上传递参数,则可以使用下面的方法: 2.top.document.location.href=...原创 2013-12-16 20:38:16 · 120 阅读 · 0 评论