我想要一个弹出窗口,用户可以在其中选择 2 个选项。当用户选择选项 1 时,form['loading_type'] 的值必须是“Loading Type A”,否则它的值是“Loading Type B”。我使用 Drupal 6 作为我的 CMS,使用 PHP 作为表单,使用 Javascript 作为弹出窗口。
它可能会有所帮助,但以下是我的代码片段:
$form['loading_type'] = array(
'#type' => 'hidden',
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit'),
'#attributes' => array('class' => 'accountability-button-confirm'),
);
$(document).ready(
function(){
$('.accountability-button-confirm').click(
function(){
return Drupal.popups.open(
Drupal.t('Loading Type:'),
Drupal.t("Please choose loading type."),
{
'Yes': {
title: Drupal.t('Loading Type A'),
func: function(){
Drupal.popups.close();
document.getElementById("loading_type").value = "Loading Type A";
$("form#name-of-my-from-form").submit();
}
},
'No': {
title: Drupal.t('Loading Type B'),
func: function(){
Drupal.popups.close();
document.getElementById("loading_type").value = "Loading Type B";
$("form#name-of-my-from-form").submit();
}
},
400
);
}
请帮忙。(我是 Drupal 新手。)非常感谢!