gpt4 book ai didi

javascript windows.location 字符串选取

转载 作者:行者123 更新时间:2023-11-28 06:24:05 24 4
gpt4 key购买 nike

我有这个网址:

http://localhost/estamo/asset.php?aname=VklQIFBsYXph&di=Ng==

我需要使用 Javascript 来实现

var locat = window.location.href;     
$.get("enviaramigo.php?email="+$("#email").val()+"&url="+locat, function(html) {

但是,当我使用 locat var 时,我会得到这个不完整的 URL:

http://localhost/estamo/asset.php?aname=VklQIFBsYXph

如何获取完整的 URL?

谢谢

最佳答案

您需要使用encodeURIComponent对url进行编码

var locat = window.location.href;     
$.get("enviaramigo.php?email="+$("#email").val()+"&url="+encodeURIComponent(locat), function(html) {

或base64

$.get("enviaramigo.php?email="+$("#email").val()+"&url="+btoa(locat), function(html) {

并且您需要在服务器上解码。

关于javascript windows.location 字符串选取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35274026/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com