<frame style="cursor:hand;">

解决方案 »

  1.   

    楼上老大:不行呀,我试了,还是没变化呀!!!!您给解释解释成吗?不会就这么简单吧?????我的代码如下,您给看看:<frame src="src1" name="name1" style="cursor:hand;">
    <frame src="src2" name="name2" style="cursor:hand;">
      

  2.   

    可不可以加个层呀
    <div style="cursor:hand">
    <frame src="src1" name="name1" >
    </frame>
    </div>
      

  3.   

    可以用层模拟
    先将frameborder =0
    再在其中一个页面加入一个层模拟frameborder<div id="frameBorder" style="cursor:hand;">
    </div>
      

  4.   

    <style>
    .SwitchClass{color:black;cursor:hand;font-family:webdings;font-size:9pt}
    </style>
    <body>
    <script language="javascript">
    function SwitchMenuStatus()
    {
    if(SwitchMenu.innerText==3)
    {
    SwitchMenu.innerText=4;
    document.all("Menu").style.display="none";
    }
    else
    {
    SwitchMenu.innerText=3;
    document.all("Menu").style.display="";
    }
    }
    function OpenMenu()
    {
    if(SwitchMenu.innerText==4)
    {
    SwitchMenu.innerText=3;
    document.all("Menu").style.display="";
    }
    else
    {
    SwitchMenu.innerText=3;
    document.all("Menu").style.display="";
    }
    }</script>
    <table width="100%" border="1" cellpadding="3" cellspacing="0" height="100%" bordercolor="#EEEEEE" bordercolordark="#FFFFFF" bordercolorlight="#999999">  
      <tr>
        <td id=Menu name="Menu" vAlign=top align=left>
          <iframe src="about:blank" style="height:100%;visibility:inherit;width:100" border="0" frameborder=0></iframe>
        </td>         
        <td width="5" height="100%" onmouseover="OpenMenu();">
          <table border=0 cellPadding=0 cellSpacing=0>
            <tr> 
      <td style="height: 100%;" valign=middle onclick="SwitchMenuStatus();">
                <div style="cursor:crosshair;width:50px;height:400px"><span class=SwitchClass id=SwitchMenu title="关闭/打开菜单">3</span></div>
              </td>
            </tr>
          </table>
        </td>
        <td id=Home name="Home" vAlign=top align=left width="100%">
          <iframe src="about:blank" style="height:100%;visibility:inherit;width:100%" border="0" frameborder=0></iframe>
        </td>
      <tr>
    </table>