gpt4 book ai didi

php - 将div中显示的值传递到php中的另一个页面

转载 作者:行者123 更新时间:2023-11-28 09:37:35 25 4
gpt4 key购买 nike

我只是想是否有办法将DIV id中显示的值传递到另一个页面我的数据从另一个页面调用并在给定代码中显示在此处

<div id="res" style="float: left; Padding-left: 3px; padding-right:13px;line-height: 15px;">
......
</div>

我想将此处显示的值传递到另一个页面,这是一个 php 页面。
谢谢...

最佳答案

当然可以。

$(document).ready(function() {
var resval = $('#res').text();
});

然后,使用查询字符串中的数据将用户重定向到下一页:

window.location = 'page2.html?resval=' + resval;

然后在第二页中您可以解析 URL(在 JQuery 中):

var qsParm = new Array();
function qs() {
var query = window.location.search.substring(1);
var parms = query.split('&');
for (var i=0; i < parms.length; i++) {
var pos = parms[i].indexOf('=');
if (pos > 0) {
var key = parms[i].substring(0, pos);
var val = parms[i].substring(pos + 1);
qsParm[key] = val;
}
}
}

或者,您可以在 PHP 中使用 $_GET['resval'] 获取参数。

引用:How to pass values from one page to another in jQuery

关于php - 将div中显示的值传递到php中的另一个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12813629/

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