ユーザーの選択に基づいて 1 つのフロー図を作成しました。オプションを選択すると、線が引かれます。ラインは正しく作成されていますが、ユーザーが選択したオプションをリセットしています。
var htmlLine = "<div style='padding:0px; margin:0px; height:" + thickness + "px; background-color:" + color + "; line-height:1px; position:absolute; left:" + cx + "px; top:" + cy + "px; width:" + length + "px;behavior:url(Scripts/-ms-transform.htc); -moz-transform:rotate(" + angle + "deg); -webkit-transform:rotate(" + angle + "deg); -o-transform:rotate(" + angle + "deg); -ms-transform:rotate(" + angle + "deg); transform:rotate(" + angle + "deg);'><hr></div>";
//
//alert(htmlLine);
document.body.innerHTML += htmlLine;
最後の行はいくつかの問題を引き起こしています。最後の行がコメントされている場合、すべて問題ありません。
私を助けてください...!!!