HTML DOM ইনপুট টেক্সট ফর্ম বৈশিষ্ট্যটি ইনপুট টেক্সট ক্ষেত্র রয়েছে এমন ফর্ম রেফারেন্স ফেরত দেওয়ার জন্য ব্যবহার করা হয়। যদি ইনপুট পাঠ্য ক্ষেত্রটি ফর্মের বাইরে থাকে তবে এটি কেবল NULL ফেরত দেবে। এই সম্পত্তি শুধুমাত্র পঠনযোগ্য।
সিনট্যাক্স
ইনপুট টেক্সট ফর্ম সম্পত্তির জন্য সিনট্যাক্স নিচে দেওয়া হল।
textObject.form
উদাহরণ
আসুন ইনপুট টেক্সট ফর্ম প্রপার্টি −
-এর একটি উদাহরণ দেখি<!DOCTYPE html> <html> <body> <h1>Input Text form Property</h1> <form id="NEW_FORM"> USERNAME: <input type="text" id="TEXT1"> </form> <p>Get the form id by clicking on the below button</p> <button type="button" onclick="formId()">GET FORM</button> <p id="Sample"></p> <script> function formId() { var P=document.getElementById("TEXT1").form.id; document.getElementById("Sample").innerHTML = "The id of the form containing the text field is: "+P ; } </script> </body> </html>
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবে
GET FORM বোতামে ক্লিক করলে -