在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 (将#修改为@)