是否可以使用创建 xsl 变量
<xsl:variable name="x"><xsl:value-of select="country" /></xsl:variable>
使用 javascript 变量?
变量“country”是在另一个 javascript 文件中创建的,该文件未嵌入在 xslt 中。我正在尝试使用 ajax 获取用户所在的国家/地区。
--------------Javascript文件--------------
$(document).ready(function()
{
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
$.getJSON('http://ws.geonames.org/countryCode', {
lat: position.coords.latitude,
lng: position.coords.longitude,
type: 'JSON'
}, function(result) {
country = result.countryCode;
});
});
};
如果有更好的方法,请回复。提前致谢。