您可能需要使用Polymer.Dom Api
Polymer.dom(ironPage).appendChild(newDiv);
另外我想你可能犯了另一个错误:
代替
newDiv.innerHtml = "def";
做
newDiv.textContent = "def";