您好,我需要您的幫助傢伙即時通訊新的JavaScript或jQuery的即時通訊嘗試添加一個html代碼內的overlay元素,但它不工作即時通訊使用$(「overlay」).append(「 你好「);這一個,但它不工作如下輸出如何在javascript或jquery上插入html
的JS是輸入什麼即時試圖做裏面的HTML代碼
init=()=>{
//SELECT & BIND (CLICK) EVENT
document.querySelector('a.menuToggle, a#welcomeDivs').addEventListener('click',modal.overlay.init);
}
modal={
overlay:{
init:()=>{
//CREATE OVERLAY
var overlay = document.createElement('overlay');
overlay.id = 'welcomeDivsss';
//SET (CLICK) EVENT TO REMOVE ITSLEF
overlay.addEventListener('click',modal.overlay.remove);
$("overlay").append("<strong>Hello</strong>");
//APPEND TO INTERFACE
document.body.appendChild(overlay);
},
remove:(e)=>{
//REMOVE ITSELF
e.target.parentNode.removeChild(e.target);
}
}
}
//ON DOCUMENT LOAD RUN INIT
document.addEventListener('DOMContentLoaded',init);
你能告訴我們你想要追加新代碼的HTML代碼嗎? 「重疊」是一個id值嗎?如果是,則應在HTML文件上輸入代碼輸出 '$(「#overlay」)' –
Webeng
。什麼即時嘗試做sr是在覆蓋內添加一個html代碼@Webeng –
我看到了,讓我知道如果我的回答爲你工作techno – Webeng