我有一个预定义的工作网站,很难从上到下重新定义,但我正在尝试使用 mbox 实现一些测试和目标。在研究中,我发现实现 mbox 的最佳位置是使用全局 mbox。由于需要在旅途中设置结构,我打算使用一些本机 javascript 将 globalmbox 添加到页面顶部,例如:
var mbox_html = document.createElement("div");
mbox_html.class="mboxGlobal";
//Script child to add to the top to create mbox
mbox_script = document.createElement("script");
mbox_script.type ="text/javascript";
mbox_script.textContent="mboxCreate('b_tntGlobal');";
document.body.insertBefore(mbox_script,document.body.firstChild);
document.body.insertBefore(mbox_html,document.body.firstChild);
这将是有效的实施吗?mbox.js 是否真的会接受这样的事情,因为我将这段代码添加到页面的末尾,并且在实现之前已经加载了 DOM