JavaScript getAttribute
Javascript இல் getAttribute() method இங்கு ஒரு குறிப்பிட்ட html element இல் அமைந்திருக்கும் ஒரு attribute இன் value ஐ எடுப்பதற்கு பயன்படுகிறது.
element.getAttribute(name);
Example1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS getAttribute() Demo</title>
</head>
<body>
<button id="btnSend" name ="success">Send</button>
<script>
let btnSend = document.querySelector('#btnSend');
if (btnSend) {
var res = btnSend.getAttribute('name');
console.log(res);
}
</script>
</body>
</html>
மேலே உள்ள Example1-ஐ கவனிக்கவும் இங்கு html tag கள் கொடுக்கப்பட்டுள்ளது. இங்கு document.querySelector('#btnSend') என்ற method மூலமாக நாம் ஒரு குறிப்பிட்ட element ஐ select செய்து கொள்கிறோம். பிறகு அதனை btnSend என்ற variable இல் store செய்து கொள்கிறோம். இங்கு btnSend.getAttribute('name') என்ற getAttribute method மூலமாக இங்கு name என்ற attribute இன் value ஆனது நமக்கு கிடைக்கிறது. இங்கு நமக்கு success என்ற output கிடைக்கிறது.
success
Example2
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS getAttribute() Demo</title>
</head>
<body>
<button id="btnSend" name ="send">Send</button>
<script>
let btnSend = document.querySelector('#btnSend');
if (btnSend) {
var res = btnSend.getAttribute('name');
console.log(res);
}
</script>
</body>
</html>
மேலே உள்ள Example2-ஐ கவனிக்கவும் இங்கு html tag கள் கொடுக்கப்பட்டுள்ளது. இங்கு document.querySelector('#btnSend') என்ற method மூலமாக நாம் ஒரு குறிப்பிட்ட element ஐ select செய்து கொள்கிறோம். பிறகு அதனை btnSend என்ற variable இல் store செய்து கொள்கிறோம். இங்கு btnSend.getAttribute('name') என்ற getAttribute method மூலமாக இங்கு name என்ற attribute இன் value ஆனது நமக்கு கிடைக்கிறது. இங்கு நமக்கு send என்ற output கிடைக்கிறது.
send
இது பற்றிய தங்களின் கருத்துகளை இங்கே பதிவிடுங்கள் . இது பயனுள்ளதாக விரும்பினால் மற்றவர்களுக்கும் இதை share செய்யுங்கள்.
Comments