我有一个小问题。
我正在尝试使用 java 开发一个解决方案,该解决方案将允许我根据用户位置加载特定的样式表。
我自己并不精通编写脚本,通常使用 jquery 插件。
如果你能用一些代码帮助我,让我开始,或者指出一些教程的方向,这将是非常有帮助的。
谢谢
我有一个小问题。
我正在尝试使用 java 开发一个解决方案,该解决方案将允许我根据用户位置加载特定的样式表。
我自己并不精通编写脚本,通常使用 jquery 插件。
如果你能用一些代码帮助我,让我开始,或者指出一些教程的方向,这将是非常有帮助的。
谢谢
Actually could use a little more help wiht this one.
I created a quick else if statement that i would use to load the stylesheets based on the output of the geolocator.
<script type="text/javascript">
if (geoplugin_countryName() == CA) {
<link rel="stylesheet" type="text/css" href="main_css.css" media="screen" />
}
else if (geoplugin_countryName() == US) {
<link rel="stylesheet" type="text/css" href="main_css.css" media="screen" />
}
else if (geoplugin_countryName() == EU) {
<link rel="stylesheet" type="text/css" href="main_css.css" media="screen" />
}
</script>
If someone could take a look at this code and let me know if the syntax will work that would be awesome, as it stands im not too familiar with java.
Thanks
看看http://www.jquery4u.com/tag/jquery-location-api/和http://www.geoplugin.com/webservices/javascript。有一个完整的例子来说明如何使用它。当有位置时,如何添加/更改样式由您决定。