javascript里面的/?v= &h= &t=3&m= 什么意思??

来源:百度知道 编辑:UC知道 时间:2024/05/14 16:31:35
function Edushi3DMapType() {

MapType.apply(this);

this.getSrc = function(level, row, column) {
if (level == 1) {
if (row > 8 || column > 12) {
return "";
}
}
return 'http://sh.edushi.com/cityresource/sh//?v=' + column + '&h=' + row + '&t=3&m=' + (MapModel.maxZoomLevel - level + 1);
}
}
这里面的return 'http://sh.edushi.com/cityresource/sh//?v=' + column + '&h=' + row + '&t=3&m=' + (MapModel.maxZoomLevel - level + 1);是什么意思??
请大虾们帮帮我~~~谢谢了

就是传递参数值

比如你这样子的 /sh/?v=7
就是传递参数到sh目录下的默认网页去。
参数名v,值是7
在那个默认网页里面就可以通过Request["v"]接收这个参数。

要传递多个参数用&连接。

就是相当于一个指针一样的
能提取到需要的 东西