尝试在新 window 中打开 url 只会打开另一个选项卡,这是真的吗?
Is it true that attempting to open a url in a new window will only open another tab?
一直在四处寻找答案。以为我找到了解决方案,但没有用。这是我尝试过的。
创建了一个javascript函数如下:
函数 openInNewWindow(url){
window.open( url, '_blank', 'height=200' );}
创建了一个热点,计算值如下:
@URLOpen("javascript:openInNewWndow('http://www.google.com')")
这只会替换当前选项卡,但不会打开新浏览器 window。还有其他方法吗?
谢谢
克莱姆
您应该指定 fullscreen
选项。
window.open("http://example.com","_blank","fullscreen=0");
但是您的程序无法对弹出窗口阻止程序执行任何操作。
@URLOpen("javascript:openInNewWndow('http://www.google.com')")
这是您粘贴的实际代码吗?因为你错过了 openInNewWindow
中的 'i'
另外,我不确定您是否可以在不指定宽度的情况下指定高度。
您也可以研究一下@urlopen 是如何工作的,根本不需要混入 javascript。
When a Notes browser triggers the @URLOpen function, it displays the retrieved Web page in a new window. When the @URLOpen function is used on a form or page that is accessed by a non-Notes browser, Domino generates a javascript window.open command with the following syntax:
window.open( [sURL] [, sName] [, sFeatures] [, bReplace])
To display the retrieved Web page in a new window, pass the values for sName and sFeatures (if desired) as comma-separated arguments within the urlstring. For example,
@URLOpen("http://www.ibm.com','NEW")
Be sure to use double quotes at the beginning and end of the urlstring parameter, and single quotes before and after each comma separating the arguments to be passed to window.open. Do not include any spaces.
@openurl 没用。我终于在表格上使用它:
[<a href="#" onclick="openInNewWindow('http://google.com')">Test</a>]
感谢您的回复。感谢输入。
克莱姆
一直在四处寻找答案。以为我找到了解决方案,但没有用。这是我尝试过的。
创建了一个javascript函数如下:
函数 openInNewWindow(url){
window.open( url, '_blank', 'height=200' );}
创建了一个热点,计算值如下:
@URLOpen("javascript:openInNewWndow('http://www.google.com')")
这只会替换当前选项卡,但不会打开新浏览器 window。还有其他方法吗?
谢谢 克莱姆
您应该指定 fullscreen
选项。
window.open("http://example.com","_blank","fullscreen=0");
但是您的程序无法对弹出窗口阻止程序执行任何操作。
@URLOpen("javascript:openInNewWndow('http://www.google.com')")
这是您粘贴的实际代码吗?因为你错过了 openInNewWindow
中的 'i'另外,我不确定您是否可以在不指定宽度的情况下指定高度。
您也可以研究一下@urlopen 是如何工作的,根本不需要混入 javascript。
When a Notes browser triggers the @URLOpen function, it displays the retrieved Web page in a new window. When the @URLOpen function is used on a form or page that is accessed by a non-Notes browser, Domino generates a javascript window.open command with the following syntax:
window.open( [sURL] [, sName] [, sFeatures] [, bReplace])
To display the retrieved Web page in a new window, pass the values for sName and sFeatures (if desired) as comma-separated arguments within the urlstring. For example,
@URLOpen("http://www.ibm.com','NEW")
Be sure to use double quotes at the beginning and end of the urlstring parameter, and single quotes before and after each comma separating the arguments to be passed to window.open. Do not include any spaces.
@openurl 没用。我终于在表格上使用它:
[<a href="#" onclick="openInNewWindow('http://google.com')">Test</a>]
感谢您的回复。感谢输入。
克莱姆