<input type=button value=ok title="这是提示文字,&#13;用title这个属性。">

解决方案 »

  1.   

    you can also do
    <input type="button" onmouseover="this.title = this.value + ':' + new Date().toString()" value="hello">
      

  2.   

    Example
    The code for the control:<OBJECT  id=test   type="application/x-oleobject"   classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"></OBJECT>
    The JavaScript code to specify the text and font variables:<script>
    FontFace="Verdana,8,,bold"
    TopicText="This is an HTML Help pop-up window. This window can display text only."
    TopicText2="This is another HTML Help pop-up window."
    </script> 
    The JavaScript code to invoke the control:<a href="JavaScript:test.TextPopup (TopicText, FontFace, 10,10,10,10)"> TextPopup Example</a>
      

  3.   

    秋水历害呀! ^O^  btw,信誉值如何取得?
      

  4.   

    <html><head><title>层与按钮对齐</title></head><body>
    <div align=left><table border=1>
    <tr><td align=center height=50 width=200>
        <input type=button value=ok onmouseover="cc(this)" onmouseout="document.all.pop.style.display='none'"></td>
        <td align=center height=50 width=200>
        <input type=button value=ok onmouseover="cc(this)" onmouseout="document.all.pop.style.display='none'"></td>
        <td align=center height=50 width=200>
        <input type=button value=ok onmouseover="cc(this)" onmouseout="document.all.pop.style.display='none'"></td></tr>
    <tr><td align=center height=50 width=200>
        <input type=button value=ok onmouseover="cc(this)" onmouseout="document.all.pop.style.display='none'"></td>
        <td align=center height=50 width=200>
        <input type=button value=ok onmouseover="cc(this)" onmouseout="document.all.pop.style.display='none'"></td>
        <td align=center height=50 width=200>
        <input type=button value=ok onmouseover="cc(this)" onmouseout="document.all.pop.style.display='none'"></td></tr>
    <tr><td align=center height=50 width=200>
        <input type=button value=ok onmouseover="cc(this)" onmouseout="document.all.pop.style.display='none'"></td>
        <td align=center height=50 width=200>
        <input type=button value=ok onmouseover="cc(this)" onmouseout="document.all.pop.style.display='none'"></td>
        <td align=center height=50 width=200>
        <input type=button value=ok onmouseover="cc(this)" onmouseout="document.all.pop.style.display='none'"></td></tr>
    </table><div><div id=pop style="position:absolute;width:100;height:50;z-index:99;display:none">
    <table border=0 bgcolor=#FF0000><tr><td align=center>层里文字</td></tr></table></div><script language=javascript>
    function cc(tt)
    {
      var daps  = document.all.pop.style;
      var ttop  = tt.offsetTop;     //TT控件的定位点高
      var thei  = tt.clientHeight;  //TT控件本身的高
      var tleft = tt.offsetLeft;    //TT控件的定位点宽
      var ttyp  = tt.type;          //TT控件的类型
      while (tt = tt.offsetParent){ttop+=tt.offsetTop; tleft+=tt.offsetLeft;}
      daps.top  = (ttyp=="image")? ttop+thei : ttop+thei+6; //层的 Y 坐标
      daps.left = tleft + 1;  //层的 X 坐标
      daps.display = "";  //层显示
    }
    </script>
    </body></html>