Latest web development tutorials

HTML DOM Meter high property

Meter Object Reference Meter Object

Examples

Measure changes in high property values:

document.getElementById("myMeter").high="60";

try it"

Definition and Usage

high property sets or returns a measure of high property values.

Provisions of high value property is defined as a measure of the high value of the range. This value must be less than max attribute value and must be greater than the low property values ​​and min.


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

In addition to Internet Explorer, the other major browsers support high property.

Note: Safari version 5 and earlier do not support high property.


grammar

Returns high attribute:

meterObject .high

Setting high properties:

meterObject .high= number

Property Value

描述
number 规定一个被界定为高的值的浮点数。

technical details

return value: Digital, is defined as a high floating point value.


More examples

Examples

Returns metrics in high property values:

var x = document.getElementById("myMeter").high;

x The output is:

95

try it"


related articles

HTML Reference Manual: HTML <Meter> High property


Meter Object Reference Meter Object