ערכתי לאחרונה בתאריך 26.07.07 בשעה 06:06 בברכה, akoka
function changeDirection(div_id,direction) { if (document.getElementById(div_id).dir=='rtl'){ document.getElementById(div_id).dir='ltr'; }else{ document.getElementById(div_id).dir='rtl'; }}
|
אין הרבה מה להסביר div_id הid של האלמנט וdirection זה הכיוונית
דוגמא
<html> <head> <meta http-equiv="content-type" content="text/html; charset=windows-1255" /> <script type="text/javascript"> function changeDirection(div_id,direction) { if (document.getElementById(div_id).dir=='rtl'){ document.getElementById(div_id).dir='ltr'; }else{ document.getElementById(div_id).dir='rtl'; }} </script> </head> <body> <input value="changedirection" type="button" onclick="changeDirection('test','ltr')"> <table> <tr> <td id="test">שלום HI ביי</td> </tr> <tr> <td id="dasdas">dasdasdasdas גשדגשדגשד</td> </tr> </table> </body> </head> </html>
|