0
我在一個頁面中創建一個靜態選項列表,我想使用JavaScript,而不是AJAX的驗證:無法驗證我的靜態選項按鈕列表
<?php echo $form->labelEx($model,'emlevel'); ?>
<?php
echo $form->radioButtonList($model,'emlevel',
array('L'=>'Low','M'=>'Moderate','X'=>'Low Moderate', 'H'=>'High'),
array('separator' => " "));
?>
<?php echo $form->error($model,'emlevel'); ?>
function chk()
{
// first I checked the value for emlevel to verify it get the value or not
//but it shows undefined
alert (document.forms["ConsultationNew"] ["ConsultationNew[enc_type]"].value);
if (document.forms["ConsultationNew"]["ConsultationNew[emlevel]"].value == null) {
alert ('choose one EMlevel'); return false;
}
}
我不能夠通過document.getelement
獲得價值.. ..值。它顯示undefined
我不能夠通過document.getelement ....價值中獲取價值。它顯示未定義 – AravindRaj
什麼是你的JS正是 – adamors
Ajax不是不同的語言或者是這樣的。你能告訴我們你的JavaScript代碼嗎? – Leri