<ClientTemplates>
<ComponentArt:ClientTemplate ID ="btn">
<a href="#" onclick="window.open('Reply.aspx','','scrollbars=yes,width=450,height=210,left=150,top=200')">Reply</a>
</ComponentArt:ClientTemplate>
</ClientTemplates>
为什么我总是跳出页面。。。我要的是窗口。
请路人解答!感激不尽!
坦白的说这个window.open是打开一个新的指定宽高的窗体,但是由于目前很多浏览器比如IE8对这个的支持是很不好的,所以如果你需要看到效果可以使用IE6来看效果,如果需要实现类似的效果可以自己使用弹出层来模拟或者使用模态窗口
<a href="javascript:void(0);" onclick="window.open('http://www.baidu.com','','status=no,scrollbars=no,top=200,left=200,
width=580,height=400')">打开新窗口</a>
function out()
{
window.open('Reply.aspx','','scrollbars=yes,width=450,height=210,left=150,top=200')
}
<a href="javascript:return out()"></a>