HTML DOM Input Image অবজেক্ট
- পূর্ববর্তী পৃষ্ঠা <input> hidden
- পরবর্তী পৃষ্ঠা <input> month
Input Image অবজেক্ট
Input Image অবজেক্ট HTML5-এর একটি নতুন অবজেক্ট
Input Image অবজেক্ট HTML <image> ইলেকট্রনিক অংশকে প্রতিনিধিত্ব করে
Input Image অবজেক্ট পরিদর্শন করুন
You can access the <image> element by using getElementById():
var x = document.getElementById("myImage");
Tip:You can also traverse the form's elements collection to access the Input Image object.
Create Input Image object
You can create an <image> element by using the document.createElement() method:
var x = document.createElement("INPUT"); x.setAttribute("type", "image");
Input Image object properties
বৈশিষ্ট্য | description |
---|---|
autocomplete | set or return the autocomplete attribute value of the email field. |
alt | set or return the alt attribute value of the input image. |
autofocus | set or return whether the input image should automatically focus after page loading. |
defaultValue | set or return the default value of the input image. |
disabled | set or return whether the input image is disabled. |
form | return a reference to the form that contains the input image. |
formAction | set or return the formaction attribute value of the input image. |
formEnctype | set or return the formenctype attribute value of the input image. |
formMethod | set or return the formmethod attribute value of the input image. |
formNoValidate | set or return whether the form data (form-data) should be validated when submitting the form. |
formTarget | set or return the formtarget attribute value of the input image. |
height | set or return the height attribute value of the input image. |
name | set or return the name attribute value of the input image. |
src | set or return the src attribute value of the input image. |
type | return the form element type of the input image field. |
value | set or return the value attribute of the input image. |
width | input image-এর width অ্যাট্রিবিউটের মান সংযোজন করা বা পুনরায় সংযোজন করুন। |
সংশ্লিষ্ট পৃষ্ঠা
HTML টিউটোরিয়ালঃHTML ফর্ম
HTML রেফারেন্স হ্যান্ডবুকঃHTML <input> ট্যাগ
HTML রেফারেন্স হ্যান্ডবুকঃHTML <input> type প্রতিভূতি
- পূর্ববর্তী পৃষ্ঠা <input> hidden
- পরবর্তী পৃষ্ঠা <input> month