function RequestTickets(url) {
var settings = 'height=500,width=400,location=no,resizable=no,scrollbars=no,status=no,
titlebar=yes,toolbar=no';
var newwindow = window.open(url, '-- Ticket Request Form --', settings, false);
if (window.focus) { newwindow.focus() };
return false;
}
我有上面的 javascript 被 umbraco 页面中的以下 html 代码调用。
<a href="javascript:RequestTickets('/us/home/requestform.aspx')">here</a> to request tickets for an event.
我不断收到一个 javascript 错误,说 newwindow 未定义。很困惑为什么它会一直发生,因为我已经明确定义了它!请帮忙