Writing /volume1/Web/Public/dokuwiki/data/log/deprecated/2024-11-15.log failed

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
study:javascript:event [2008/02/02 11:05] bananastudy:javascript:event [2008/03/20 01:51] (現在) banana
行 2: 行 2:
  
 document.compatMode document.compatMode
-  - Quirks mode("BackCompat": Standard-compliant mode is not switched on. +  - Quirks mode[BACKCompat] : Standard-compliant mode is not switched on. 
-  - Strict mode("CSS1Compat": Standard-compliant mode is switched on.+  - Strict mode[CSS1Compat: Standard-compliant mode is switched on.
        
  
-<code>+<code javascript>
 function getPosition(e) { function getPosition(e) {
     e = e || window.event;     e = e || window.event;
行 26: 行 26:
  
 </code> </code>
 +
 +{{keywords> mouse cursor position change background color selected row}}
 +
 +
 +
 +
 +
  
 ===== Test Sample ===== ===== Test Sample =====
行 39: 行 46:
  
 <body> <body>
-<a href="#" onclick="open_win()">What are the coordinates of the cursor?</a>+<a href="#" onclick="open_win()" style="text-decoration:underline;color:#900B09">What are the coordinates of the cursor?</a>
  
 </body> </body>
  
 </html> </html>
 +
 +
 +
 +
 +====== Change background color of a selected row ======
 +<code javascript>
 +function TT_click(oR) {
 + var oT = oR.parentNode.parentNode; //Table node
 + if(oT.targetRec == oR) {   //再度クリックすると色を消す
 +  oR.style.backgroundColor = '';
 +  oT.targetRec = false;
 + } else {
 +  if(oT.targetRec)oT.targetRec.style.backgroundColor = '';
 +  oR.style.backgroundColor = oT.currentBackgroundColor;
 +  oT.targetRec = oR;
 + }
 +}
 +
 +function TT(Tid,SetColor) {
 + var oT = document.getElementById(Tid);
 + if(! oT)return;
 +
 + for(var i=0;i<oT.rows.length;i++) {
 +  oT.rows[i].onclick=function(){TT_click(this);};
 + }
 +  oT.targetRec=false;
 +  oT.currentBackgroundColor=SetColor;
 +}
 +</code>
 +
 +===== Code sample =====
 +<code html>
 +<BODY bgcolor="#f9c58a">
 +<form name="f1">
 +
 +<テーブルをクリックすると行の色が変わるサンプル>
 +
 +<TABLE id="T1" cellspacing="0" width="180">
 +<tr><td>hoge</td><td>hoge</td></tr>
 +<tr><td>hoge</td><td>hoge</td></tr>
 +<tr><td>hoge</td><td>hoge</td></tr>
 +</TABLE>
 +<BR><BR>
 +
 +<script type="text/javascript">
 +<!--
 +TT('T1','#65c9ef');// テーブルのIDをクリックした時の色
 +//-->
 +</script>
 +</code>
 +
  

QR Code
QR Code study:javascript:event (generated for current page)