HTML DOM নির্দিষ্ট প্রপার্টি একটি অ্যাট্রিবিউট নির্দিষ্ট করা হয়েছে কিনা তা পরীক্ষা করার জন্য ব্যবহার করা হয়। যদি অ্যাট্রিবিউট নির্দিষ্ট করা থাকে এবং অন্যথায় মিথ্যা হয় তবে এটি সত্য ফেরত দিয়ে তা করে। যদি একটি প্রদত্ত বৈশিষ্ট্য তৈরি করা হয় তবে এখনও একটি উপাদানের সাথে সংযুক্ত না হয় তবে এটি সত্যে ফিরে আসবে৷
সিনট্যাক্স
নিম্নে উল্লেখিত প্রপার্টির জন্য সিনট্যাক্স রয়েছে −
attribute.specified
উদাহরণ
আসুন আমরা নির্দিষ্ট সম্পত্তির উদাহরণ দেখি −
<!DOCTYPE html> <html> <body> <p>Click the button find out if the button has an onclick attribute specified.</p> <img id="IMG1" src="https://www.tutorialspoint.com/swing/images/swing-mini-logo.jpg" alt="Learn Swing"> <p> Check if the above image has alt attribute specified by clicking the below button </p> <button onclick="checkAlt()">CHECK</button> <p id="Sample"></p> <script> function checkAlt() { var img = document.getElementById("IMG1"); var s=img.getAttributeNode("alt").specified; if(s==true) document.getElementById("Sample").innerHTML = "The image element has alt attribute specified"; else document.getElementById("Sample").innerHTML = "The image element does not have alt attribute specified"; } </script> </body> </html>
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবে
চেক বোতামে ক্লিক করলে -