我正在使用 MooTools,我想禁用特定的复选框元素,我尝试使用以下代码:
$$('#lbl-box-posts8 #Others').set().disabled = true;
但不工作:(
我的 HTML 代码:
<ul>
<li id="property_type8">
<div class="email_alert_checkbx_list_type">
<label id="lbl-box-posts8" class="label_check c_on" for="Others">
<input type="checkbox" value="Others" class="validate['group[1,1]'] chkBX" id="Others" name="type">Others
</label>
</div>
</li>
</ul>
我的 Mootools 代码:
JHTML::_('behavior.mootools'); /* to load mootools */
$ajax = "
/* <![CDATA[ */
window.addEvent('domready', function() {
$$('#lbl-box-posts8 #Others').set().disabled = true;
});
})
/* ]]> */
";
$doc =&JFactory::getDocument();
$doc ->addScriptDeclaration($ajax);