如何防止全屏打开并在Firefox中添加滚动条

How to Prevent this opening in full screen and Add Scrollbar in Firefox

本文关键字:Firefox 添加 滚动条 何防止      更新时间:2023-09-26

嗨,我只是想问我如何使这个弹出不是全屏和滚动条这一行代码

<a href="/Hire/HireDetails?Id=' + ID + '" onclick="window.open(this.href,height=850,width=1200);return false""><span style="font-size: 12px !important">View Profile</span></a>

在Firefox中以全屏模式打开,看不到滚动条。

谢谢

试试这个:

window.open("","","location=1,status=1,scrollbars=1,width=650,height=600");

试试这个:

<a href="http://www.vikaskottari.tk" onclick="event.preventDefault();window.open(this.href,'','location=1,status=1,scrollbars=1,height=1200,width=1200');">
<span style="font-size: 12px !important">View Profile</span></a>