Latest web development tutorials

HTML DOM Meter low property

Meter Object Reference Meter Object

Examples

Measure changes in the value of low property:

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

try it"

Definition and Usage

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

low attribute specifies the metric value is defined as the range of low values. The value must be greater than the min attribute value and must be less than max and high property values.


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

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


grammar

Returns low attributes:

meterObject .low

Setting low property:

meterObject .low= number

Property Value

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

technical details

return value: Digital, a floating-point number is defined as a low value.


More examples

Examples

Returns metrics in low property values:

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

x The output is:

40

try it"


related articles

HTML Reference Manual: HTML <Meter> Low property


Meter Object Reference Meter Object