记录
- 在使用
node.appendChild(childNode)
时,如果childNode
是另一个元素的子元素,那么在 append 后,该元素会从其父元素中删除。也就是说在父元素中forEach
循环时不应该appendChild
。 - 在微信小程序中使用 webview 页面跳转链接,链接地址不能使用
http
且不能带有#
否则页面会跳转两次 Object.assign(a,b)
会将b
对象的属性覆盖至a
属性,但是仅会覆盖第一层。
let objA = {
attrs: {
class: 'classname',
style: 'color: red;'
}
}
let objB = {
attrs: {
class: 'this is classname'
}
}
let assignObj = Object.assign(objA, objB)
//assignObj = {
// attrs: {
// class: 'this is classname'
// }
//}