Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/78.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 并非所有jsp都是通过ajaxc在Internet Explorer中实现的_Javascript_Jquery_Jsp_Internet Explorer - Fatal编程技术网

Javascript 并非所有jsp都是通过ajaxc在Internet Explorer中实现的

Javascript 并非所有jsp都是通过ajaxc在Internet Explorer中实现的,javascript,jquery,jsp,internet-explorer,Javascript,Jquery,Jsp,Internet Explorer,我已经在jsp中创建了一个div,正在进行ajax调用。jsp“readFileNotings”在Firefox和Chrome中得到正确返回,但在任何版本的IE中都没有 <s:iterator status="stat" value="alFileNoting" > <s:if test="%{alFileNoting[#stat.index]=='File'}">

我已经在jsp中创建了一个div,正在进行ajax调用。jsp“readFileNotings”在Firefox和Chrome中得到正确返回,但在任何版本的IE中都没有

             <s:iterator status="stat" value="alFileNoting" >
                   <s:if test="%{alFileNoting[#stat.index]=='File'}">
                     <tr>
                       <td>
                         <h6><span style="text-decoration:underline ;font-family: Arial;font-size: 14px;color : #003366"><s:text  name="file.fileNo"></s:text><s:property value="alFileNoting[#stat.index+1].fileNo"/></span></h6>

                       </td>
                     </tr>          
                    </s:if>
                    <s:else> 
                    <tr><s:property value="stat.index"/></tr>            
                     <tr><td width=800 colspan="2" style="word-break:keep-all">
                     <div style="margin: 0px 50px 0px 50px; padding:0px 50px 0px 50px"><h5><%=i-- %>. <s:text name="file.notingBy"></s:text> 
                         <s:property
                            value="LyingWith" />, <s:property
                            value="CreatedDate" /></h5>
                          <%
                            out.println(request.getAttribute("FileDescription"));
                          %>

                          <s:if test="NotingAttachement1!=null || NotingAttachement2!=null || NotingAttachement3!=null">
                           <s:text name="attachement"></s:text>
                           </s:if>

                          <s:if test="NotingAttachement1!=null">
                            <s:a theme="simple" href="javascript:OpenAttachment('%{NotingAttachementId1}')">
                                <s:property value="NotingAttachement1"/>    
                            </s:a>

                          </s:if>

                          <s:if test="NotingAttachement2!=null">
                            <s:a theme="simple" href="javascript:OpenAttachment('%{NotingAttachementId2}')">
                                <s:property value="NotingAttachement2"/>    
                            </s:a>
                          </s:if>

                          <s:if test="NotingAttachement3!=null">
                            <s:a theme="simple" href="javascript:OpenAttachment('%{NotingAttachementId3}')">
                                <s:property value="NotingAttachement3"/>    
                            </s:a>
                          </s:if>
                           <s:form name="verifySignature" action="verifySignatureFilesAction.action"  > 

                            <input  name="alFileNoting" id="alFileNoting"    value="<s:property value="alFileNoting" />"/>
                            <input type="hidden" name="notingNo" id="n"    value="<s:property value="notingId" />"/>
                            <input type="hidden" name="SignedSignatureText" value="<s:property value="signatureText"/>"/>
                            <input type="hidden" name="SignedChallangeRespose" value="<s:property value="challangeResponse"/>"/>
                            <!-- <input type="hidden" name="SignedNotingDescription" value="<s:property value="FileDescription"/>"/> -->
                            <input type="hidden" name="SignedSignFlag" value="<s:property value="signFlag"/>"/>

                            <input type="hidden" name="SignedSectionName" value="<s:property value="sectionName"/>"/>
                            <input type="hidden" name="SignedFileNo" value="<s:property value="FileNo"/>"/>
                            <%
                            if("Y".equals(request.getAttribute("signFlag").toString()))
                            {%>
                                <h5><s:text name="file.signedBy"/><s:property value="LyingWith"/> 
                         </h5>                      
                            <%} %>



                             <input type="button"  class="bt-login" value="<s:text name="file.verify"/>" onclick="javascript:verify(this.form)"> 
                            <img name="result"  src="images/doubt.gif"  height="25" width="25"  />

                        </s:form>
                        </div>
                      </td>
                    </tr>
                    <tr height="8" class="bgboxwhite">
                     <td height="6"></td>
                    </tr>
                </s:else>
                </s:iterator>

我在IE中只返回了1行,没有打开任何附件。请帮助出现语法错误。请您交叉检查是否没有不平衡的标签。您关闭了div标签吗?是的…我关闭了所有tgs。在Chrome和Firefox中打开得很好,你能用最新的更改更新代码段吗?因为在这篇文章中我看不到结束div这个代码段是完整的吗