在网站(我们的一个)的页面上,我可以在 url 中输入以下代码:
javascript:createNewWindow('Something', 100, 100, 'Text')
有没有办法有人可以利用这个?
function createNewWindow(url, widthIn, heightIn, title)
{
var strOptions='toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=' + widthIn + ',height=' + heightIn;
var newWin = open( url,title,strOptions );
newWin.focus();
}