0

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

4

1 回答 1

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>
于 2012-04-13T22:50:28.313 回答