语法:
open(URL, windowName, windowFeatures)
你在windowName和windowFeatures中间写一大串数字做什么?windowFeatures好像也不认识target=_blank这样的feature。
而且注意window.open方法有返回值的:返回一个window对象,把它返回到href里面会把当前页面给破坏掉。
试试:
<a href="javascript:void(window.open('about:blank','detail','menubar=no,scrollbar=yes,top=50,left=50,width=700,height=500'));">test</a>

解决方案 »

  1.   

    <a href="javascript:window.open('../../../<%=strBrowseListLink%>','detail',700,500,50,50,'scrollbar=yes,target=_blank');"> ==><a href="javascript:window.open('../../../<%=strBrowseListLink%>','',700,500,50,50,'scrollbar=yes,target=_blank');">
      

  2.   

    cow~~~
    copy你的代码copy出问题了。
    <a href="javascript:window.open('../../../<%=strBrowseListLink%>','',700,500,50,50,'scrollbar=yes,target=_blank');">哪儿有这种语法……<a href="javascript:window.open('../../../<%=strBrowseListLink%>','','channelmode=0,directiories=0,fullscreen=0,height=num,left=num,location=0,menubar=0,resizeable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,top=num,width=num')">window.open就支持这么多参数了,不支持自创的。
    哦,还有那个toolbar的,那个是在HTA里用的。