解决方案 »

  1.   

    自顶一下,这是jsp大学实用教程(第二版)5.4.6的例题
      

  2.   

    playNext=new String("<image src=image/"+pictureName[count%max]+ " width=120 height=100></image>");
    会不会你路径问题?因为playNext要放到jsp页面的。 <image src=image/"+pictureName[count%max]+ " width=120 height=100></image> 你这样的话前面的路径就没有了。所以pictureName[count%max] 之前要用绝对路径你改成
    playNext=new String("<image src=D:/tomcat7/webapps/wy/第五章/5-4-6/image/"+pictureName[count%max]+ " width=120 height=100></image>"); 试试
      

  3.   

    font中表单都没有,说明是后台的问题,点击下一页 ,断点到后台看一下返回到页面的字符串是什么。