document.writeln("<table width=\"100\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("  <tr>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("    <td>&nbsp;<\/td>");
document.writeln("  <\/tr>");
document.writeln("<\/table>")

解决方案 »

  1.   

    <script language="javascript" src="cc.jsp?lm=bb"> </script>
    这种形式是:将src所指路经里的文件以javascript的形式进行载入.跳转应该这样写
    <script language="javascript">window.location.href='cc.jsp?lm=bb';</script> 
      

  2.   

    如果非要将跳转的工作交给cc.jsp 那cc.jsp也应该输出为脚本格式
    比如在cc.jsp中做跳转到xx.jsp
    cc.jspout.print("window.location.replace('xx.jsp');");
      

  3.   

    我怎么一打开bb.jsp然后就没反应了?
      

  4.   

    就是这个东东<script language="javascript" src="cc.jsp?lm=bb"> </script> 怎么转不到cc.jsp里面
      

  5.   

    <script language="javascript">
    function aa()
    {
    window.location.href='cc.jsp?lm=bb'; 
    }
    </script><body onload="aa()">
    你是不是想要这样的效果啊
      

  6.   

    好像没有看见像你说的那样把跳转页面放在src中,不过你可要通过frame或者iframe中的src属性可要实现你需要的那个功能
      

  7.   

    最好是用iframe实现你想要的功能