impressionHtml=`<img src=${value} alt=""/>`; document.getElementById("wrapper").appendChild(impressionHtml); js向父元素wrapper中的末尾添加 定义好的html,报错: Uncaught TypeError: Failed to execute is not of type 'Node'. 在stackoverflow上找到很好的一个解释:
/// 获得指定元素的父元素 /// </summary> /// <typeparam name="T">指定页面元素</typeparam> /// <param name="obj"></param> /// <returns></returns> public T GetParentObject<T>(DependencyObject obj) where T :