|
NAMERose::HTML::Label - Object representation of the "label" HTML tag. SYNOPSIS my $label = Rose::HTML::Label->new(for => 'name',
contents => 'Name');
# <label for="name">Name</label>
print $i->html;
$i->accesskey('n');
# <label accesskey="n" for="name">Name</label>
print $i->xhtml;
...
DESCRIPTIONRose::HTML::Label is an object representation of the <label> HTML tag. Yes, there really is a <label> tag in both HTML 4.01 and XHTML 1.0. Look it up. This class inherits from, and follows the conventions of, Rose::HTML::Object. Inherited methods that are not overridden will not be documented a second time here. See the Rose::HTML::Object documentation for more information. HTML ATTRIBUTESValid attributes: accesskey
class
dir
for
id
lang
onblur
onclick
ondblclick
onfocus
onkeydown
onkeypress
onkeyup
onmousedown
onmousemove
onmouseout
onmouseover
onmouseup
style
title
xml:lang
AUTHORJohn C. Siracusa (siracusa@gmail.com) LICENSECopyright (c) 2010 by John C. Siracusa. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|