$("#p1").attr("id", "another_id");
$("a#link2").attr("href", "https://www.books.com.tw/").attr("style", "color: red;font-size: 30px;");
$("a#link2").attr({
"href": "https://www.books.com.tw/",
"style": "color: red;font-size: 30px;"
});
$("a#link2").removeAttr("style");