js 获取前一个页面的url 你懂的....
我想用js获取前一个页面的url。可是用 “location.href , parent.location.href ”.我获取到的都是当前的url;
unction changeLanguage() { //v3.0
var txturl ="";
var spliturl = "";
spliturl=location.href;
txturl=parent.location.href;
}
--------------------编程问答-------------------- 试试这个:document.referrer --------------------编程问答-------------------- 存放在cookies里面吧。 --------------------编程问答-------------------- document.referer --------------------编程问答--------------------
因为是用flash 跳转的,document.referer
获取不到??? --------------------编程问答-------------------- parent.location.href这里的作用是取到包含子页面的时候,在子页面里面取到父页面的URL,并不是取上一个页面的URL --------------------编程问答--------------------
那么取上个页面的url怎样获取啊? --------------------编程问答--------------------
你用httpwatch监控一下referer未必有值 --------------------编程问答-------------------- 没办法直接获取,只能先存储好,再获取
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="jquery-1.6.min.js" language="javascript" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
function GetUrl() {
alert(document.getElementById('hidden1').value);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="Button1" type="button" value="获取上一页地址" onclick="GetUrl();" />
<input id="hidden1" type="hidden" value="" runat="server" /><%--隐藏域存储上一页地址--%>
</div>
</form>
</body>
</html>
--------------------编程问答-------------------- 那就放在flash中,作为参数传过去,简单省事实用 --------------------编程问答-------------------- 先存储好,再获取++ --------------------编程问答-------------------- 学习中
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
hidden1.Value = Request.UrlReferrer.ToString();
}
}
}
补充:.NET技术 , ASP.NET