我正在处理应用程序,当我想在新选项卡或窗口上打开链接时遇到了问题。我正在使用 Lotus Notes Designer Release 8.5.2FP1。我附上了我的一段代码。
<xp:eventHandler event="onclick" submit="true"
refreshMode="complete">
<xp:this.action><![CDATA[#{javascript:try{
var doc = database.getProfileDocument("frmConfiguration","");
var url = doc.getItemValueString("HeaderLink1URL");
view.postScript("var tempwindow =window.open('" +url+"','_blank');tempwindow.focus();");
}catch(e){
}}]]></xp:this.action>