<input type="text"id="text111" name="text111">
我有这条线,并尝试在文本框的右侧注入一个按钮...请建议我如何在JS中执行此操作?
它是镀铬的延伸 我将找到ID的每个实例并将其注入......但是如何?
答案 0 :(得分:1)
使用.insertAdjacentHTML()
,详细信息在代码段
<强>段强>
// Reference the textbox
var in111 = document.getElementById('text111');
/* use insertAdjecentHTML() method
|| The first parameter is the position of insertion
|| The second parameter is the text that will be rendered into
|| HTML.
*/
in111.insertAdjacentHTML('afterend', '<button id="btn">Button</button>');
&#13;
<input type="text" id="text111" name="text111">
&#13;