<span style="font-family:webdings">6</span>

解决方案 »

  1.   

    看看,都在这里
    <style>
    <!--样式单 -->
    .20{font-size:40;color:#c99c96}
    </style>
    font class=20 Face=Webdings
    <br>
    <script>
    document.write("<center><font class=20 Face=Webdings>")
    for(i=32;i<=255;i++)
     document.write((i%16==0?"<br>":"")+"<span title="+i+","+String.fromCharCode(i)+">&#"+i+"</span>")
    document.write("</font></center>")
    </script>
    <br>
    <script>
     document.write("<font class=20 Face=Webdings>!</font>")
    </script>
      

  2.   

    我也很痛苦,按钮里是不能使用 HTML 标签的,不过你可以用 &#nnn; 之类,比如 TM 标志用 &#153; 版权符号用 &copy; 等等, 如果和字体有关,估计很难。
      

  3.   

    <input type=button value="↓" name=b1>
      

  4.   

    :(
    <input style="font-family:webdings" value="6" type=button>
      

  5.   

    片段
    <style>
    .navPoint {font-family: Webdings; font-size: 7pt}
    </style><input type=button class=navPoint value="9" title="第一条" onclick="xmldso.recordset.MoveFirst()">
                <input type=button class=navPoint value="3" title="上一条" onclick="xmldso.recordset.MovePrevious(); if(xmldso.recordset.BOF) xmldso.recordset.MoveFirst();">
                <input type=button class=navPoint value="4" title="下一条" onclick="xmldso.recordset.MoveNext(); if(xmldso.recordset.EOF) xmldso.recordset.MoveLast();">
                <input type=button class=navPoint value=":" title="最后一条" onclick="xmldso.recordset.MoveLast()">