You are here: Reference > JavaScript > client-side > xml handling > properties > stringValue (XPathResult)

stringValue property (XPathResult)

Browser support:
If the type of the result represented by the XPathResult object is string, returns the value of the result.
The XPathResult object represents the result of the evaluate method.
The type of the result depends on the fourth parameter of the evaluate method, or, if its value is ANY_TYPE, on the expression specified by the first parameter. With the resultType property the type of the result can be retrieved. If the value of the resultType property is STRING_TYPE, then the stringValue property retrieves the value of the result as a string, else the use of the stringValue property raises an exception.

Syntax:

object.stringValue;
You can find the related objects in the Supported by objects section below.
This property is read-only.

Possible values:

String that retrieves the value represented by the current XPathResult object.
Default: this property has no default value.

Example HTML code 1:

This example illustrates the use of the stringValue property:
<head>
    <script type="text/javascript">
        function CountofButtons () {
            if (document.evaluate) {    // Firefox, Opera, Google Chrome and Safari
                var xPathRes = document.evaluate ('count(//BUTTON)', document, null, XPathResult.STRING_TYPE, null);
                alert ('This document contains ' + xPathRes.stringValue + ' button element(s)');
            }
            else {  // Internet Explorer
                alert ("Your browser does not support the evaluate method!");
            }
        }
    </script>
</head>
<body>
    <button onclick="CountofButtons ()">Get the number of buttons!</button>
</body>
Did you find this example helpful? yes no

Supported by objects:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content