JavaScript Reference/Javascript Methods/execCommand

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

"execCommand()" Example

    
<html>
<body>
<script language="JavaScript">
function function1() {
    document.execCommand("Refresh", "false", "false");
}
</script>
<button onclick="function1();">Refresh page</button>
</body>
</html>



"execCommand()" is applied to

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



"execCommand()" Syntax, Parameters and Note

Note:
Executes outside the regular methods. 
Returns true (successful) or false (failed).
    
Syntax:
    
controlRangeName.execCommand(param1, param2, param3)
objectName.execCommand(param1, param2, param3)

Parameters:
    param1   Required; the name of the command. 
             see http://msdn.microsoft.ru/workshop/author/dhtml/reference/commandids.asp.
    param2   Optional; true or false, display a user interface 
                       if the command supports one.
    param3   Optional; only applies to some of the commands.