我一直在研究页面构建器并遇到了这个双引号问题。
div id="set" style="color:black;font-size:12px"
document.getElementById('set').style.backgroundImage="url('editor.png')"
或者
document.getElementById('set').style.backgroundImage="url(editor.png)"
这在 Firefox 和 IE 中设置
div id="set" style="url("editor.png");color:black;font-size:12px"
当页面被保存并重新加载时,双引号会破坏样式。
有谁知道解决这个问题的方法?