我有一个用asp.net MVC2编写的网站,显示随机图像,每个图像都有一个ID,第一个图像是随机图像,但访问者在查看此图像时看到的网址没有图像。我想这样做,以便当用户访问www.mydomain.com时,查询字符串将更新为类似www.mydomain.com/?imageid=12。
通过这种方式,他们可以将他们看到的东西转发给他人。我不介意我是在服务器端用javascript设置,还是作为响应重定向。
答案 0 :(得分:0)
不确定这是否是最佳方式,但我认为这样可行
window.onload = function(){
var images = document.getElementsByTagName('img'); //get all images
var first = images[0]; //get the first of all images
var imgid = first.id; //get the id of the first one
window.location = "www.mydomain.com?imageid="+imgid;
}