0

下面我尝试在 CSS 中使用标记名(跨度)定位元素,但它在早期的 Internet Explorer 中不起作用......如果有人有解决这个问题的方法,请帮助......

索引.php

<?php header('Content-type: application/xhtml+xml'); ?>

<?xml-stylesheet type="text/xsl" href="copy.xsl"?>

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:aa="zz" xmlns:ee="rr">
<head>
    <title></title>
    <style type="text/css">
        /* it work */ aa\:span{background: #00ff00;}
        /* it doesnt work */ span{background: #00ff00;}
    </style>
</head>
<body>
    <aa:span id="span1">
        <aa:p>aaa</aa:p>
    </aa:span>
    <ee:span id="span1">
        <ee:p>aaa</ee:p>
    </ee:span>
</body>
</html>

复制.xsl

<stylesheet version="1.0"
     xmlns="http://www.w3.org/1999/XSL/Transform">
    <template match="/">
        <copy-of select="."/>
    </template>
</stylesheet>
4

1 回答 1

0

好吧,您可以将所有元素转换为纯 HTML,而无需命名空间,例如

<xsl:template match="*">
  <xsl:element name="{local-name()}">
    <xsl:apply-templates select="@* | node()"/>
  </xsl:element>
</xsl:template>

那么你需要还需要

<xsl:template match="@* | comment() | text() | processing-instruction()">
  <xsl:copy/>
</xsl:template>

以确保复制其他节点不变。

所以大家一起得到

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

    <xsl:template match="*">
      <xsl:element name="{local-name()}">
        <xsl:apply-templates select="@* | node()"/>
      </xsl:element>
    </xsl:template>

    <xsl:template match="@* | comment() | text() | processing-instruction()">
      <xsl:copy/>
    </xsl:template>

</xsl:stylesheet>
于 2013-06-26T14:42:37.480 回答