$("#my_select option:selected").removeAttr("selected");
从jQuery 1.6开始,你应该使用.prop而不是删除属性:
$("#my_select option:selected").prop("selected",false);