下面给出的打开弹出窗口的代码将打开,但我想关注弹出窗口。我正在尝试使用scriptTag.focus();但是,任何人都无法提出建议来解决这个问题。
var scriptTag = "window.open('"+serverURL+"','popUpWindow','height=500,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no, status=yes')";
scriptTag.foucs();
refButton = '<div class="tableAction" id="senDiv">' +
'<input id="importSce" name="importSce" type="button" value="Import" onclick="'+scriptTag+'"/>' +
'</div>';
答案 0 :(得分:0)
不需要focus
方法查看此
serverURL = "http://google.com"; window.open(serverURL,'popUpWindow','height=500,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no, status=yes');
查看here工作示例
答案 1 :(得分:0)
你的脚本拼写错误了。检查'scriptTag.focus();'