我需要添加具有固定大小,固定背景色不透明度和可變背景色的html(不一定需要是跨度)。我嘗試這樣做:使用嵌套引號構建字符串
var tr = htmlDocument.getElementById(myId).tBodies[0].children;
tr[1].children[5].innerHTML = '<center><span ng-style="{'background-color': getColor(parseFloat(myArray[index]))}">' + myArray[index] + '</span></center>';
和我:
Uncaught SyntaxError: Unexpected identifier
的編號工作完全正常,所以不介意。我也不知道如何添加不透明度(比如說50%)。
使用與innerHTML的角屬性? – epascarello
你的問題是你在單引號裏面有單引號的事實.... – epascarello
我是一個完整的noob我不知道這是什麼意思 – defoification