1

我修改了一些代码(在此处获得许可)以在我的网站上显示经度和纬度。我对大部分代码的作用有一个大致的了解,但有一个部分我不知道,想知道是否有任何大师可以告诉我。如果..这是某种报告脚本,我希望能够让它向我报告。

当被问到时,所有者告诉我,他也“借用”了大部分代码,并且我使用它没有任何问题。而且.. 由于他不是编码员,因此无法就我遇到的任何问题/问题提出建议。

//<![CDATA[

var gs_d=new Date,DoW=gs_d.getDay();gs_d.setDate(gs_d.getDate()-(DoW+6)%7+3);

var ms=gs_d.valueOf();gs_d.setMonth(0);gs_d.setDate(4);

var gs_r=(Math.round((ms-gs_d.valueOf())/6048E5)+1)*gs_d.getFullYear();

var gs_p = (("https:" == document.location.protocol) ? "https://" : "http://");

document.write(unescape("%3Cscript src='" + gs_p + "s.gstat.orange.fr/lib/gs.js?"+gs_r+"' type='text/javascript'%3E%3C/script%3E"));

//]]>  
4

1 回答 1

0

The code comes from the gStat project and is used in the generation ("prediction") of the lat & long locations.

于 2013-08-16T17:28:44.867 回答