gpt4 book ai didi

javascript - 如何使用 javascript 将文本插入到格式化的弹出窗口中?

转载 作者:行者123 更新时间:2023-12-03 12:43:28 24 4
gpt4 key购买 nike

以下代码有效,但它替换了整个新窗口。

var v = window.open("popup.html"... );
w.document.body.write("asd");

我有一个

<div id="insert-here"></div>

在我的 popup.html 中,我想在此处插入我想要的文本。

此代码不起作用,我尝试了其他 3 种不同的方法,但没有成功:

$(w.document.body).find("#insert-here").append(msg);

我怎样才能实现它?我想避免在 javascript 中使用 css 创建整个 html 页面。

最佳答案

你能使用 jQuery UI 对话框吗? https://jqueryui.com/dialog/

您可以有一个 div,其中包含一些信息:

<div id="dialog" title="Basic dialog" style="display: none;">Some information</div>

然后你的 jQuery 可以相应地处理它:

$('#dialog').dialog();
$('#dialog').html("some other info");

请参阅此 jsfiddle 示例:http://jsfiddle.net/gL3uZ/1/

关于javascript - 如何使用 javascript 将文本插入到格式化的弹出窗口中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23434969/

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