我有一个元素表,当我点击一个td时,我会在atextarea上显示一些东西
问题是当我点击时,textarea上没有显示......
我实际做的是:
td.onclick = (function(textToShow){
return function(){
var textArea = document.getElementById("modification_bloc");
textArea.value = textToShow;
}
})(structure[key])
HTML代码(是.ejs)
<form id="modification_bloc" action="modification_bloc" name="modification_bloc" class="hidden" type="post">
<textarea name="contenu_bloc" id="contenu_bloc"></textarea>
<br />
<input type="submit" value="Sauvegarder modifications"/>
</form>
问题是我的textarea总是空的....
如果我执行“textToShow”的console.log,我有文本,如果我将文本添加为占位符,我可以在控制台中看到它,但不能在textarea上看到它。 innerHTML方法有效,但文本显然不可编辑ç^^
我没有弄错。
你可以帮帮我吗? 没有JQUERY:)