如何为变量设置条件?

时间:2019-01-07 09:47:38

标签: opencart

我在Opencart的“ product.tpl”页面上有可用的GeoIP检测代码。 如何为变量设置条件? 示例:如果“ city” =“ London”,则php回显“您的城市是伦敦”。

<script 
   src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"> 
</script>

<div>Country: <span id="country"></span></div>
<div>State: <span id="state"></span></div>
<div>City: <span id="city"></span></div>

<script>
   $.ajax({
   url: "https://geoip-db.com/jsonp",
   jsonpCallback: "callback",
   dataType: "jsonp",
   success: function( location ) {
      $('#country').html(location.country_name);
      $('#state').html(location.state);
      $('#city').html(location.city);
    }
});     
</script>

1 个答案:

答案 0 :(得分:1)

只需检查城市并插入您需要的消息即可。

例如

var text = '';

  if(location.city == 'London'){
    text = 'XXX';
  } else {
    text = 'YYY';
  }

  $('#city').parent().after('<p>' + text + '</p>');