JavaScript Reference/Javascript Methods/queryCommandValue

Материал из Web эксперт
Версия от 08:22, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"queryCommandValue()" Example

    
<html>
<body>
<script language="JavaScript">
function function1() {
    var myText = document.body.createTextRange();
    var m = myText.queryCommandValue("delete");
    alert("The command value for this object is: "+"""+m+"""); 
} 
</script>
<input type="button" value="Delete Command Value" onclick="function1();">
</body>
</html>



"queryCommandValue()" is applied to

Names noted with an asterisk (*) are JavaScript properties only.
+----------------+--------------------------------------------------------------+
| Applied_To     |controlRange*                   document                      |
|                |TextRange                                                     |
+----------------+--------------------------------------------------------------+



"queryCommandValue()" Syntax, Parameters and Note

Note:
This method returns the value of the specified command.
    
Syntax:
    
controlRangeName.queryCommandValue(param1)
objectName.queryCommandValue(param1)
Parameters:
    param1   Required; the name of the command. 
                       For a complete list of commands, go to: 
                       http://msdn.microsoft.ru/workshop/author/dhtml/reference/commandids.asp.