NAME
HTML::HTML5::DOM::HTMLFormElement - implementation of the HTMLFormElement interface of the HTML DOM
DESCRIPTION
HTML::HTML5::DOM::HTMLFormElement is an implementation of the HTMLFormElement interface of the HTML DOM. See HTML::HTML5::DOM for a list of the conventions that have been used when translating the DOM to Perl.
HTML Elements
This class applies to the following HTML elements.
{http://www.w3.org/1999/xhtml}form
Inheritance
HTML::HTML5::DOM::HTMLFormElement inherits methods from the following Perl classes.
Additional Methods
As well as its inherited methods, this class provides the following methods.
acceptCharsetCalled with no arguments, is a shortcut for
$elem->getAttribute("accept-charset"). Called with a defined argument, acts assetAttribute. Called with undef as an argument, acts asremoveAttribute.actionCalled with no arguments, is a shortcut for
$elem->getAttribute("action")but as a blessed URI object. Called with a defined argument, acts assetAttribute. Called with undef as an argument, acts asremoveAttribute.autocompleteCalled with no arguments, is a shortcut for
$elem->getAttribute("autocomplete"). Called with a defined argument, acts assetAttribute. Called with undef as an argument, acts asremoveAttribute.elementsReturns a list of form-related elements which this form owns. In list context this is a normal Perl list. In scalar context it is a HTML::HTML5::DOM::HTMLFormControlsCollection.
encodingCalled with no arguments, is a shortcut for
$elem->getAttribute("encoding"). Called with a defined argument, acts assetAttribute. Called with undef as an argument, acts asremoveAttribute.enctypeCalled with no arguments, is a shortcut for
$elem->getAttribute("enctype"). Called with a defined argument, acts assetAttribute. Called with undef as an argument, acts asremoveAttribute.lengthThe length of the
elementslist.methodCalled with no arguments, is a shortcut for
$elem->getAttribute("method"). Called with a defined argument, acts assetAttribute. Called with undef as an argument, acts asremoveAttribute.nameCalled with no arguments, is a shortcut for
$elem->getAttribute("name"). Called with a defined argument, acts assetAttribute. Called with undef as an argument, acts asremoveAttribute.noValidateCalled with no arguments, is a shortcut for
$elem->getAttribute("novalidate"). Called with a defined argument, acts assetAttribute. Called with undef as an argument, acts asremoveAttribute.p5_submittableElementsReturns a list of form-related elements which this form owns that can potentially cause name=value pairs to be added to the form submission. (e.g. not
<fieldset>.) In list context this is a normal Perl list. In scalar context it is a HTML::HTML5::DOM::HTMLFormControlsCollection.submitSubmits the form based on the current values of its submittable elements. May be passed an optional hashref of name=>value pairs to override those values, but this is not always enough to do what you want, as HTML allows for multiple form elements of the same name to exist in a form.
targetCalled with no arguments, is a shortcut for
$elem->getAttribute("target"). Called with a defined argument, acts assetAttribute. Called with undef as an argument, acts asremoveAttribute.
BUGS
http://rt.cpan.org/Dist/Display.html?Queue=HTML-HTML5-DOM.
SEE ALSO
AUTHOR
Toby Inkster <tobyink@cpan.org>.
COPYRIGHT AND LICENCE
This software is copyright (c) 2012, 2014 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.