-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
<div id="content">
My name is {name}, I love {language}.
</div>function bindHTMLContentWithObject(el, obj) {
// ...
}
const obj = {
name: 'LiLei',
language: 'JavaScript'
}
const newObj = bindHTMLContentWithObject(document.querySelector('#content'), obj)
// content 内容 My name is LiLin, I love JavaScript.
newObj.name = 'HanMeimei' // #content 内容为 My name is HanMeimei, I love JavaScript.
newObj.language = 'Java' // #content 内容为 My name is HanMeimei, I love Java.Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels