JavaScript Reference/Javascript Objects/page

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

"page" Example

   <source lang="javascript">
   

<html> <head> <style>@page:first { background-color: blue; }</style> <script language="JavaScript"> function function1() {

   var m = document.styleSheets(0).pages(0);
   var n = m.pseudoClass;
   alert(n);

} </script> </head> <body> <input type="button" value="Click here for the name of the first @page rule" onclick="function1();"> </body> </html>


     </source>
   
  


"page" is applied to

   <source lang="javascript">

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

     </source>
   
  


"page" JavaScript Properties

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | JavaScript |pseudoClass readOnly | | Properties |selector selectorText | +----------------+--------------------------------------------------------------+

     </source>
   
  


"page" Syntax and Note

   <source lang="javascript">

Note: Access to an @page rule. You can access the page object only by referencing the desired index in the pages collection.

Syntax:

document.styleSheets(index1).pages(index2).memberName


     </source>