Javascript来确定我在哪个页面

时间:2012-04-13 22:49:30

标签: javascript

所以我有一个图像显示在每个页面上,但是我想编写一个脚本,根据页面,用另一个图像替换图像。我如何以编程方式确定我所在的页面?实际的图像替换我已经可以做了。

1 个答案:

答案 0 :(得分:3)

您可以使用location

<script type="text/javascript">
   alert(window.location);
   // and you can set the location to move to another page
   window.location = "http://stackoverflow.com"
</script>