0

我希望通过单击drupal页面中的链接打开一个新窗口,其中包含一个表单。但是窗口应该是一个新窗口。

我怎么能做到。?

我正在考虑使用常规

window.open(theURL, windowName, features);

但我该怎么做

1) Create a drupal page without the default themes.

2) Load this page from JS into a new window. This page is going to be a form. 

我应该只创建一个 tpl 页面并通过 _theme 函数加载它吗?我很困惑...

4

1 回答 1

0

这不是 Drupal 方式……而是回答您的问题:

1)您不会创建没有主题的 drupal 页面。您可以在 sites/all/forms/ 中创建一个没有 Drupal 的 html 表单

2)$('#element').attr('target', '_blank');

于 2013-08-01T02:22:50.750 回答