0

我正在尝试通过 jquery 命令显示(块,无)选择框(在此示例中只有一个选择框)。但我没有得到任何结果。我有一个隐藏属性,但我需要这个显示(块,无)。

带显示的非工作 JS/JQUERY(none,block)

var formObject = {
    run : function(obj) {
            obj.nextAll('.update').attr({'disabled': true, 'none':true}).html('<option value="">----</option>');
            var id = obj.attr('id');
            var v = obj.val();
            jQuery.getJSON('includes/update.php', { id : id, value : v }, function(data) {
                if (!data.error) {
                    obj.next('.update').html(data.list).removeAttr('disabled none');
                } else {
                obj.nextAll('.update').attr({'disabled': true, 'none':true}).html('<option value="">----</option>');
                }
            });
        }   
}; 
4

1 回答 1

1

不要使用属性来隐藏元素!!!

jQuery:

$('...').hide();
$('...').show();    

CSS:

$('...').addClass('hidden');
$('...').removeClass('hidden');

香草javascript:

document.getElementById('id').style.display = "none";
document.getElementById('id').style.display = "block";    
于 2012-06-18T22:58:48.237 回答