📌  相关文章
📜  将字符串转换为数字 javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:17.139000             🧑  作者: Mango

代码示例6
$("#link").attr("href");                    // get an attribute
$("#link").attr("href",'https://htmlg.com'); // set attribute
$("#link").attr({
"href" : "https://htmlg.com",            // setting multiple attributes
"title" : "HTML Editor"
});
$("#link").attr("href", function(i, origValue){
return origValue + "/help";             // callback function gets and changes the attribute
});