を働いていない私は、次のXML
コード(のtest.xml)持っている:XSL - のために、各
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="test.xsl" ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>http://www.url.com/1/</url>
<url>http://www.url.com/2/</url>
<url>http://www.url.com/3/</url>
</urlset>
を、私は次のXSL
コード(test.xsl)とそれにいくつかのスタイルを与えたいです
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
</head>
<body>
<xsl:for-each select="/urlset/url">
<div>
one address here (no matter which)
</div>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
何らかの理由で結果がありません。ちょうどblank page
です。
私はちょうど私のために働いた数年前に試したサンプルコードに従ったが、これは動作しません。
これを解決する方法はありますか?
それはここ数#1 XSLTの質問です: "XSLTデフォルトネームスペース"を検索するだけです。誰かがほぼ毎日それを聞いています。 –