Changeset 4489 for temp/trunk/html


Ignore:
Timestamp:
2006/09/10 19:23:13 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/js/layout_design.js

    r4446 r4489  
    107107// Ãͤò¼èÆÀ 
    108108function getAttrValue ( elm, attrname ) { 
    109     //alert(elm.nodeValue); 
    110      
    111     //alert(typeof(elm.attributes[ attrname ])); 
    112      
    113     //alert(elm.attributes[ attrname ].nodeValue); 
    114      
    115109    if (typeof(elm.attributes[ attrname ]) != 'undefined') { 
    116110        return elm.attributes[ attrname ].nodeValue; 
    117111    } 
    118      
    119112} 
    120113 
     
    127120function getX ( elm ) { 
    128121//   return parseInt(elm.style.left); 
     122alert(elm.offsetLeft); 
    129123    return parseInt(elm.offsetLeft); 
     124     
    130125} 
    131126 
Note: See TracChangeset for help on using the changeset viewer.