Output name attribute
Definition and Usage
name
attribute set or return <output> element of name attribute value.
The name attribute is used to identify form data after the form data is submitted to the server, or to reference form data on the client using JavaScript.
See also:
HTML Reference Manual:HTML <output> name এট্রিবিউট
HTML Reference Manual:HTML <output> ট্যাগ
Example
Example 1
Get the name of <output> element:
var x = document.getElementById("myOutput").name;
Example 2
Change the name of <output> element:
document.getElementById("myOutput").name = "newOutputName";
Syntax
return name attribute:
outputObject.name
set name attribute:
outputObject.name = name
এট্রিবিউট মান
মান | বর্ণনা |
---|---|
name | <output> এলিমেন্টের নাম নির্দিষ্ট করুন |
প্রযুক্তিগত বিবরণ
ফলাফল: | শব্দতালিকা মান, <output> এলিমেন্টের নাম নির্দেশ করে |
---|
ব্রাউজার সমর্থন
টেবিলের সংখ্যাগুলি এই এট্রিবিউটটি সম্পূর্ণরূপে সমর্থনকারী প্রথম ব্রাউজার সংস্করণটি নির্দেশ করে
চ্রোম | এজ | ফায়ারফক্স | স্যাফারি | ওপেরা |
---|---|---|---|---|
চ্রোম | এজ | ফায়ারফক্স | স্যাফারি | ওপেরা |
10.0 | সমর্থন না | 4.0 | 5.1 | 11.0 |