HTML DOM Output অবজেক্ট

  • পূর্ববর্তী পৃষ্ঠা <option>
  • পরবর্তী পৃষ্ঠা <p>

Output object

The Output object represents the HTML <output> element.

Note:Internet Explorer / Edge does not support the <output> element.

Access Output object

You can use getElementById() to access the <output> element:

var x = document.getElementById("myOutput");

try it yourself

Hint:You can also access the <output> element by searching the element collection of the form.

create Output object

You can use the document.createElement() method to create a <output> element:

var x = document.createElement("OUTPUT");

try it yourself

Output object properties

অপারিতা description
defaultValue set or return the default value of the <output> element.
form return a reference to the form containing the <output> element.
htmlFor return the value of the for attribute of the <output> element.
labels return the list of <label> elements associated with the <output> element.
name set or return the value of the name attribute of the <output> element.
type return the type of HTML element represented by the Output object.
value set or return the value of the <output> element.

প্রতিষ্ঠানিক অপারিতা ও ঘটনা

Output অবজেক্ট প্রতিষ্ঠানিক স্ট্যান্ডার্ডঅপারিতাএবংঘটনা

সংশ্লিষ্ট পৃষ্ঠা

HTML পরামর্শপত্রঃHTML <output> ট্যাগ

  • পূর্ববর্তী পৃষ্ঠা <option>
  • পরবর্তী পৃষ্ঠা <p>