๐ HTML
<div id="div" about="Elephant">DIV</div>
๐ JS
const {log} = console;
const div = $('div');
// โญ๏ธ attribute name is case-insensitive
log(div.attr('About')); // Elephant
log(div.attr('ABOUT')); // Elephant
log(div.attr('AboUt')); // Elephant
// โญ๏ธ set new attribute test="123"
div.attr('Test', 123); // <div id='div' about='Elephant' test='123'>DIV</div>
// โญ๏ธ Note: div.attributes is NOT an array.
for (let attr of div.attributes) {
log(`${attr.name} = ${attr.value}`);
}
// about = Elephant
// test = 123
DOM properties are NOT always strings. for example:
a.href is always a full URL. ( ๐๐ป See: ๐็ฏไพ )
/* -------- helper -------- */
// show element's attribute & property
function showAttrProp(elem, attr, prop=attr){
log(`${elem.nodeName.toLowerCase()}.${prop} = ${elem[prop]}`);
log(`${attr}='${elem.attr(attr)}'`);
}
/* -------- โญ๏ธ `a.href` is always a full URL -------- */
const a = $('a');
showAttrProp(a, 'href');
// a.href = 'https://...#hello' // โญ๏ธ full URL
// href='#hello'
property โ attribute sync
standard attribute changes โ auto-update property, and vice versa.
โญ๏ธ with some exceptions ( ๐๐ป ๐็ฏไพ )
๐ HTML
๐ JS
const {log} = console;
let input = $('input');
/* -------- โญ๏ธ input.value => value="..." NOT synced -------- */
// input.value => user's current input
// input.defaultValue => value="..." (attribute)
// (ไป้ข) โฑโพโพโพโพโพโพโพโพโพโพโพ โ
โพโพโพโพโพโพโพโพโพโพโพโพโพโคต๏ธ
// input.attr('value', 'hi') input.value = 'hi'
// โ___________ โ _____________โฑ (่ฃก้ข)
// input.attr('value') =โ
=> input.value
input.attr('value', 'hi');
show(); // input.value = 'hi' โ
synced
// <input value='hi'>
// input.value =โ=> attribute
input.value = 'what?';
show(); // input.value = 'what?'
// <input value='hi'> โ NOT synced
// show input's attribute & property
function show(){
log(`input.value = '${input.value}'`);
log(input.outerHTML);
}