JavaScript Reference/Javascript Methods/recalc

Материал из Web эксперт
Перейти к: навигация, поиск

"recalc()" Example

   <source lang="javascript">
   

<html> <body> <script language="JScript"> function function1() {

  myDiv.style.setExpression("height","eval(myDiv.innerHTML)");

} function function2() {

   alert(myDiv.style.getExpression("height"));

} function function3() {

   alert(myDiv.style.removeExpression("height"));

} function function4() {

   myDiv.innerHTML = 100; document.recalc();

} </script> <button onclick="function1();">Set expression</button> <button onclick="function2();">Get expression</button> <button onclick="function3();">Remove expression</button> <button onclick="function4();">Recalc</button>

20

</body> </html>


     </source>
   
  


"recalc()" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |document | +----------------+--------------------------------------------------------------+

     </source>
   
  


"recalc()" Syntax, Parameters and Note

   <source lang="javascript">

Note: Refreshes all properties that can be dynamically set using the setExpression() method.

Syntax:

document.recalc(param1)

Parameters:

   param1   Optional; true or false, 
                      indicating whether to recalculate all expressions or only the 
                      expressions that have changed since the last recalc() operation.
   
     
     </source>