I am using the jquery live function to create multiple widgets on a page using ...
$('#mybutton').live('click', function(){
var first = $('#win-doors-pvc fieldset:first').html();
$(first).find('select option:selected').attr('selected',false);
$('#win-doors-pvc').append('');
});
The code above successfully re-creates the content within a fieldset.
The content with var first contains a select control.
I would like to manipulate that select by using
$(first).find('select option:selected').attr('selected',false);
to de-select what has been selected.
Why does it not work ?
以上就是select control manipulation not working的详细内容,更多请关注web前端其它相关文章!