微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在Microsoft Edge浏览器上打开时未加载Web内容

如何解决在Microsoft Edge浏览器上打开时未加载Web内容

您能否建议我需要对标签进行哪些更改,以便它可以在Microsoft Edge浏览器上工作

xsl file 


<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:import href="common.xsl" />

<xsl:template match="@ID">
<td width="15%"><xsl:value-of select="."/></td>
</xsl:template>

<xsl:template match="COND-ID">
<td width="10%"><xsl:value-of select="."/></td>
</xsl:template>

<xsl:template match="CLIENT">
<td width="15%"><xsl:value-of select="."/></td>
</xsl:template>

<xsl:template match="SYST-NM">
<td width="15%"><xsl:value-of select="."/></td>
</xsl:template>

<xsl:template match="DESC-TX">
<td width="15%"><xsl:value-of select="."/></td>
</xsl:template>

<xsl:template match="SYST-CLNT-ID">
<td><xsl:value-of select="."/></td>
</xsl:template>

<xsl:template match="EMCLIENT">
<td width="15%"><xsl:value-of select="."/></td>
</xsl:template>


<xsl:template match="Provision/CLNT-MPNG">

<table width="100%">
<xsl:if test="position() = 1">
<tr class="headC1">
<th width="15%">Client Id</th>
<th width="15%">EmClient Id</th>
<th width="15%">System Name</th>
<th width="15%">System Key Value</th>
<th width="15%">Description</th>    
<th>System Client Id</th>   
<th width="10%">Condition id</th>   
</tr>
    
</xsl:if>

    <tr class="dataC1"> 
    <xsl:apply-templates select="CLIENT"/>
    <xsl:apply-templates select="EMCLIENT"/>
    <xsl:apply-templates select="SYST-NM"/>
    <xsl:apply-templates select="@ID"/>
    <xsl:apply-templates select="DESC-TX"/>
    <xsl:apply-templates select="SYST-CLNT-ID"/>
    <xsl:apply-templates select="COND-ID"/>
    
</tr>
</table>
</xsl:template>



</xsl:stylesheet>

在IE上正常运行时,Web内容未在Microsoft Edge浏览器上加载。 我对XSL文件进行了更改,但无济于事。 谁能建议我需要做些什么来使其加载并在Microsoft Edge浏览器上提供支持

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。