JS Reference

JS by Category JS by Alphabet

JavaScript

JS Array JS Boolean JS Classes JS Date JS Error JS Global JS JSON JS Math JS Number JS Operators JS RegExp JS Statements JS String

Window

Window Object Window Console Window History Window Location Window Navigator Window Screen

HTML DOM

DOM Document DOM Element DOM Attributes DOM Events DOM Event Objects DOM HTMLCollection DOM Style
alignContent alignItems alignSelf animation animationDelay animationDirection animationDuration animationFillMode animationIterationCount animationName animationTimingFunction animationPlayState background backgroundAttachment backgroundColor backgroundImage backgroundPosition backgroundRepeat backgroundClip backgroundOrigin backgroundSize backfaceVisibility border borderBottom borderBottomColor borderBottomLeftRadius borderBottomRightRadius borderBottomStyle borderBottomWidth borderCollapse borderColor borderImage borderImageOutset borderImageRepeat borderImageSlice borderImageSource borderImageWidth borderLeft borderLeftColor borderLeftStyle borderLeftWidth borderRadius borderRight borderRightColor borderRightStyle borderRightWidth borderSpacing borderStyle borderTop borderTopColor borderTopLeftRadius borderTopRightRadius borderTopStyle borderTopWidth borderWidth bottom boxShadow boxSizing captionSide caretColor clear clip color columnCount columnFill columnGap columnRule columnRuleColor columnRuleStyle columnRuleWidth columns columnSpan columnWidth counterIncrement counterReset cursor direction display emptyCells filter flex flexBasis flexDirection flexFlow flexGrow flexShrink flexWrap cssFloat font fontFamily fontSize fontStyle fontVariant fontWeight fontSizeAdjust height isolation justifyContent left letterSpacing lineHeight listStyle listStyleImage listStylePosition listStyleType margin marginBottom marginLeft marginRight marginTop maxHeight maxWidth minHeight minWidth objectFit objectPosition opacity order orphans outline outlineColor outlineOffset outlineStyle outlineWidth overflow overflowX overflowY padding paddingBottom paddingLeft paddingRight paddingTop pageBreakAfter pageBreakBefore pageBreakInside perspective perspectiveOrigin position quotes resize right scrollBehavior tableLayout tabSize textAlign textAlignLast textDecoration textDecorationColor textDecorationLine textDecorationStyle textIndent textOverflow textShadow textTransform top transform transformOrigin transformStyle transition transitionProperty transitionDuration transitionTimingFunction transitionDelay unicodeBidi userSelect verticalAlign visibility width wordBreak wordSpacing wordWrap widows zIndex

Web APIs

API Console API Fullscreen API Geolocation API History API MediaQueryList API Storage

HTML Objects

<a> <abbr> <address> <area> <article> <aside> <audio> <b> <base> <bdo> <blockquote> <body> <br> <button> <canvas> <caption> <cite> <code> <col> <colgroup> <datalist> <dd> <del> <details> <dfn> <dialog> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <footer> <form> <head> <header> <h1> - <h6> <hr> <html> <i> <iframe> <img> <ins> <input> button <input> checkbox <input> color <input> date <input> datetime <input> datetime-local <input> email <input> file <input> hidden <input> image <input> month <input> number <input> password <input> radio <input> range <input> reset <input> search <input> submit <input> text <input> time <input> url <input> week <kbd> <label> <legend> <li> <link> <map> <mark> <menu> <menuitem> <meta> <meter> <nav> <object> <ol> <optgroup> <option> <output> <p> <param> <pre> <progress> <q> <s> <samp> <script> <section> <select> <small> <source> <span> <strong> <style> <sub> <summary> <sup> <table> <tbody> <td> <tfoot> <th> <thead> <tr> <textarea> <time> <title> <track> <u> <ul> <var> <video>

Other References

CSSStyleDeclaration JS Conversion


बटन फॉर्मविधि संपत्ति

बटन वस्तु

उदाहरण

प्रपत्र-डेटा भेजते समय उपयोग करने के लिए कौन सी HTTP विधि लौटाएं:

var x = document.getElementById("myBtn").formMethod;

परिभाषा और उपयोग

formMethod प्रॉपर्टी एक बटन के फॉर्ममेथोड विशेषता का मान सेट या लौटाती है।

फॉर्ममेथोड विशेषता निर्दिष्ट करती है कि फॉर्म-डेटा भेजते समय कौन सी HTTP विधि का उपयोग करना है। यह विशेषता प्रपत्र की विधि विशेषता को ओवरराइड करती है।

फॉर्ममेथोड विशेषता केवल टाइप = "सबमिट" वाले बटनों के लिए उपयोग की जाती है।

प्रपत्र-डेटा को URL चर (विधि = "प्राप्त" के साथ) या HTTP पोस्ट (विधि = "पोस्ट" के साथ) के रूप में भेजा जा सकता है।

"प्राप्त करें" विधि पर नोट्स:

  • यह नाम/मूल्य जोड़े में यूआरएल में फॉर्म-डेटा जोड़ता है
  • यह फॉर्म सबमिशन के लिए उपयोगी है जहां उपयोगकर्ता परिणाम को बुकमार्क करना चाहता है
  • आप URL में कितना डेटा रख सकते हैं इसकी एक सीमा है (ब्राउज़र के बीच भिन्न होता है), इसलिए, आप यह सुनिश्चित नहीं कर सकते हैं कि सभी प्रपत्र-डेटा सही ढंग से स्थानांतरित किए जाएंगे
  • संवेदनशील जानकारी पास करने के लिए कभी भी "प्राप्त करें" पद्धति का उपयोग न करें! (पासवर्ड या अन्य संवेदनशील जानकारी ब्राउज़र के एड्रेस बार में दिखाई देगी)

"पोस्ट" विधि पर नोट्स:

  • यह प्रपत्र-डेटा को HTTP पोस्ट लेनदेन के रूप में भेजता है
  • "पोस्ट" पद्धति के साथ फॉर्म सबमिशन को बुकमार्क नहीं किया जा सकता है
  • यह "प्राप्त" की तुलना में अधिक मजबूत और सुरक्षित है
  • इसकी आकार सीमाएँ नहीं हैं

नोट: HTML5 में <button> तत्व के लिए formmethod विशेषता नई है।


ब्राउज़र समर्थन

Property
formMethod Yes 10.0 Yes Yes Yes

वाक्य - विन्यास

फॉर्म विधि संपत्ति लौटाएं:

buttonObject.formMethod

फॉर्म विधि संपत्ति सेट करें:

buttonObject.formMethod = get|post

सम्पत्ति की कीमत

Value Description
get Appends the form-data to the URL: URL?name=value&name=value
post Sends the form-data as an HTTP post transaction


टेक्निकल डिटेल

प्रतिलाभ की मात्रा: एक स्ट्रिंग, जो सर्वर पर फॉर्म जमा करने के लिए उपयोग की जाने वाली HTTP विधि का प्रतिनिधित्व करती है

और ज्यादा उदाहरण

उदाहरण

प्रपत्र-डेटा भेजने की विधि बदलें:

document.getElementById("myBtn").formMethod = "post";

उदाहरण

फॉर्म विधि संपत्ति वापस करने पर एक और उदाहरण:

var x = document.getElementById("myBtn").formMethod;

संबंधित पृष्ठ

HTML संदर्भ: HTML <button> formmethod विशेषता


बटन वस्तु