访问控制-允许-源不允许源空
我做了一个小的xslt文件来创建一个名为weather.xsl的html输出,代码如下:
<!-- DWXMLSource="http://weather.yahooapis.com/forecastrss?w=38325&u=c" -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="yweather"
xmlns:yweather="http://xml.weather.yahoo.com/ns/rss/1.0" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<img src="{/*/*/item/yweather:condition/@text}.jpg"/>
</xsl:template>
</xsl:stylesheet>
我想将html输出加载到html文件中的div中,我正在尝试使用jQuery执行以下操作:
<div id="result">
<script type="text/javascript">
$('#result').load('weather.xsl');
</script>
</div>
但是我收到以下错误:访问控制-允许-源不允许源空。
我已经读过关于向xslt添加标头的信息,但我不确定如何做到这一点,所以任何帮助都将不胜感激,如果无法以这种方式加载html ouput,那么关于如何做到这一点的建议将是很棒的。