如果国家是印度并且显示srilanka.jpg是国家是斯里兰卡,我想展示india.jpg。
这会检测到我的国家/地区
alert("Your location is: " + geoplugin_countryName() + ", " + geoplugin_region() + ", " + geoplugin_city());
印度的地理代码:22.512557,80.076350 SL的地理反应代码:7.460518,80.783469
如何动态添加?请帮忙
Js fiddle - http://jsfiddle.net/madhuri2987/KS4yy/2/
答案 0 :(得分:1)
以下是基于您的代码的一般想法。创建图像,检查国家/地区名称并相应地更改图像的src属性。
jQuery( document ).ready( function( $ ) {
var image = document.createElement('img'),
country = geoplugin_countryName();
if ( country === 'India' ) {
image.src = 'location/of/image/india.jpg'
} else if ( country === "Sri Lanka" ) {
image.src = 'location/of/image/sri-lanka.jpg';
} else {
image.src = 'location/of/image/default.jpg';
}
$('#flag').html( image );
});