gpt4 book ai didi

输入值中的 JavaScript 变量

转载 作者:行者123 更新时间:2023-12-02 19:27:26 24 4
gpt4 key购买 nike

我有一些问题。这是我的代码片段:

FB.api('/me', function(me){
if (me.id) {
alert(me.id);
//alert(me.email);
var fbmail = me.email;
alert(fbmail);
document.write('<input id="mail" type="hidden" value="'+fbmail+'">');
var retro = document.getElementById('mail').value;
alert(retro);
})

我的问题是没有警报(复古); :(你能告诉我怎么了???

最佳答案

document.write 只能在页面加载时使用。

在异步回调中调用它会删除当前页面,因此 getElementById 将返回 null。

关于输入值中的 JavaScript 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11924099/

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