操作BS系统的时候,平台是xp,用java写的,数据库mysql,只有IE8报了这个错。怎么破?javaie8xp

解决方案 »

  1.   

    <th colspan="2" scope="col">
    更新景点
    </th>
    </tr>
    <tr>
    <th scope="row">
    景点编号:
    </th>
    <td>
    ${view.vId}
    <input type="text" name="vId" style="visibility: hidden"
    value="${view.vId}" />
    </td>
    </tr>
    <tr class="a1">
    <th scope="row">
    景点名称:
    </th>
    <td>
    <input type="text" name="vname" value="${view.vName}"
    class="editbox4" id="commons" />
    </td>
    </tr>
    <tr>
    <th scope="row">
    景点位置:
    </th>
    <td>
    <input type="text" name="add" value="${view.vAddress}"
    class="editbox4" id="spcommons" />
    </td>
    </tr>
    <tr>
    <th scope="row">
    等级:
    </th>
    <td>
    <select name="level.levelId" class="editbox4" id="number">
    <c:forEach items="${levelSelects}" var="level">
    <c:if test="${view.level.levelId==level.levelId}">
    <Option value="${level.levelId}" selected="selected">
    ${level.levelName}
    </Option>
    </c:if>
    <c:if test="${hotel.level.levelId!=level.levelId}">
    <Option value="${level.levelId}">
    ${level.levelName}
    </Option>
    </c:if>
    </c:forEach>
    </select>
    </td>
    </tr>
    <tr>
    <th scope="row">
    景点图片1:
    </th>
    <td class="binde">
    <input type="button" value="是否更新图片" id="updatebPage"
    style="font-size: 12px;" />
    <input type="hidden" value="${view.vBpage}" name="bpage" />
    </td>
    <td style="display: none;" class="showbPage">
    <input type="file" name="bimage" />
    <font color="red">支持宽度为120px,长度120px</font>
    </td>
    <tr>
    <tr>
    <th scope="row">
    景点图片2:
    </th>
    <td class="sinde">
    <input type="button" value="是否更新图片" id="updatebsPage"
    style="font-size: 12px;" />
    <input type="hidden" value="${view.vSpage}" name="spage" />
    </td>
    <td style="display: none;" class="showsPage">
    <input type="file" name="simage" />
    <font color="red">支持宽度为120px,长度120px</font>
    </td>
    <tr>就是点击那个是否更新图片就报错
      

  2.   

    别人的IE8也是这个毛病啊,我的以前没有事儿诶,而且使用的是Jquery1.7
      

  3.   

    ie8不兼容?其他浏览器没问题?重装个ie8试试,不行的话 就是程序问题了
      

  4.   

    应该是IE8的问题,与HTML内容无关。
      

  5.   

    使用JQuery的时候,是隐藏一个td显示一个td,而这回我给改成在内部隐藏按钮并提供之前td的隐藏内容就行了。这回IE8就没事儿了。谢谢各位支持与参与