1.要重新打开个IE的设置是<a href="链接地址" target='_blank'>鼠标点击的内容</a>
2.通过通过onclick=‘openwin()’方法重新打开ie的方法:
function openWin(url,title,height,width){
var left=(screen.width-width)/2;
var top=(screen.height-height)/2-30;
window.open("<%= request.getContextPath()%>"+url, title, "height="+height+", width="+width+", top="+top+", left="+left+", toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}
3.页面内容自动换行的样式style="white-space:normal;word-break:break-all;line-height: 1.4" 并不会因为 改变内容的字体 或其他样式 而影响换行的效果
本文介绍了如何重新打开IE浏览器的设置页面,并提供了一个通过JavaScript函数实现新窗口弹出的方法。此外,还介绍了一种确保页面内容自动换行的CSS样式。
1757

被折叠的 条评论
为什么被折叠?



