我有一个带有一堆字段的drupal 7表单:
$form['account_type'] = array(
'#title' => t('Utility Account Type'),
'#type' => 'select',
'#options' => necp_enrollment_administration_portal_account_type_options(),
'#required' => TRUE,
'#default_value' => isset($form_state['values']['account_type']) ? $form_state['values']['account_type'] : '',
);
// Should show if account_type = 1
$form['home_wrapper'] = array(
'#type' => 'fieldset',
'#states' => array(
'visible' => array(
':input[name="account_type"]' => array('value' => 1),
),
),
);
$form['home_wrapper']['first_name_1'] = array(
'#title' => t('Primary Account First Name'),
'#type' => 'textfield',
'#default_value' => isset($form_state['values']['first_name_1']) ? $form_state['values']['first_name_1'] : '',
'#states' => array(
'required' => array(
':input[name="account_type"]' => array('value' => 1),
),
),
);
$form['home_wrapper']['last_name_1'] = array(
'#title' => t('Primary Account Last Name'),
'#type' => 'textfield',
'#default_value' => isset($form_state['values']['last_name_1']) ? $form_state['values']['last_name_1'] : '',
'#states' => array(
'required' => array(
':input[name="account_type"]' => array('value' => 1),
),
),
);
// Should show if account_type = 2
$form['business_wrapper'] = array(
'#type' => 'fieldset',
'#states' => array(
'visible' => array(
':input[name="account_type"]' => array('value' => 2),
),
),
);
$form['business_wrapper']['company_name'] = array(
'#title' => t('Company/Organization'),
'#type' => 'textfield',
'#default_value' => isset($form_state['values']['company_name']) ? $form_state['values']['company_name'] : '',
'#states' => array(
'required' => array(
':input[name="account_type"]' => array('value' => 2),
),
),
);
在Firefox / Chrome / Opera中,此表单的所有版本都应该正常运行。但是在IE的所有版本中,表单都使用display:none初始化;无论account_type中的值是什么,所有条件字段上的样式。更改account_type的选定选项不会影响隐藏状态。
有关调试此表单的任何提示都很棒。
注意:
我也试过了:
':select[name="account_type"]' => array('value' => 1),
'#edit-account-type' => array('value' => 1),
答案 0 :(得分:12)
好的,我找到了解决方案。希望这可以帮助处于类似情况的人采矿。
':input[name="account_type"]' => array('value' => 1),
需要:
':input[name="account_type"]' => array('value' => "1"),
显然,IE中的javascript正在评估文字类型/值而不仅仅是值:1 !== "1"
等。一旦我修复了它,它开始像冠军一样工作。
我的代码中还有另一个实例,其中值来自PHP变量,它不接受变量作为int,但接受它为字符串......
':input[name="account_type"]' => array('value' => "$id"),
答案 1 :(得分:0)
我的猜测是jQuery输入选择器因任何原因失败了。您可以尝试使用:input[name="account_type"]
#edit-account-type
吗?