1

我正在使用 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); 
4

1 回答 1

4

你的意思是这样的?

$$('#lbl-box-posts8 #Others').set('disabled','disabled');
于 2013-09-27T11:37:49.710 回答