Drupal中没有重定向的Javascript弹出窗口?

时间:2011-06-04 01:14:39

标签: php javascript drupal

我正在尝试创建一个javascript函数来从我的drupal站点创建一个弹出窗口。

function popitup() {
    newwindow=window.open('popup.html','name','height=200,width=150');
    if (window.focus) {newwindow.focus()}
    return false;
}

这很好,除了Drupal将url重定向到我的模块的主页面。我希望能够使用原始HTML文件,或者至少使用Drupal Hook页面,而不需要任何Drupal主题。

有什么建议吗?

1 个答案:

答案 0 :(得分:3)

您是否尝试在功能中使用绝对链接?我认为问题来自于您的函数和Drupal URL重写功能之间的误解。如果是这种情况,您可以使用完整的绝对URL来修复它。

例:

function popitup() {
newwindow = window.open('http://www.yoursite.com/yourpath/popup.html', 'name', 'height=200, width=150'); if (window.focus) {newwindow.focus()} return false; }
这应该工作。如果您需要模块使用不同的域,可以使用Drupal PHP函数:base_path()

print base_path(); // This will retrieve drupal installation base path.

干杯