我正在使用 google API 来检测客户端位置,但它总是向我显示“Google Loader 未检测到您的位置”。
我需要找到客户所在地的国家代码,但它对我不起作用。
<script src="http://www.google.com/jsapi" language="javascript"></script>
<script language="javascript">
if (google.loader.ClientLocation != null) {
document.write("Your Location Is: " + google.loader.ClientLocation.address.country_code);
} else {
document.write("Your Location Was Not Detected By Google Loader");
}
</script>