After goggling for a day on "how to do DOM selection through AngularJs", i found something like this
var elem = angular.element(document.querySelector("#myDiv"));
elem.removeClass("selected");
but not sure whether AngularJs have something better than this to handle the DOM without using JQuery (because my project only need basic DOM selection).