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