我正在尝试使用Saxen-CE。但是当我在本地主机上使用Eclipse运行以下代码时,我收到2个错误:
我尝试更改权限但没有成功。我错过了什么吗?即使我直接导入Saxonce.nocache.js,我也无法调用Saxon.run函数。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="../Saxonce/Saxonce.nocache.js"></script>
<script type="text/javascript">
var onSaxonLoad = function() {
Saxon.run(
{
stylesheet: "transformation.xsl",
source: "xmlfile.xml",
logLevel: "INFO"
})};
</script>
</head>
<body>
TEST
</body>
</html>
还有其他XSLT 2.0处理器吗?也许是jquery?