1

我在javascript中有一个动态创建的textArea。我将其设为“只读”并使用字符串设置值现在我希望每当单击此 textArea 时都应调用一个函数。但我正在尝试,但所有功能都不起作用。任何帮助将不胜感激:

这是我的代码:

    textarea = document.createElement("textarea");
                               textarea.setAttribute('readonly', 'readonly'); 
                               textarea.setAttribute("cols",35);
                               textarea.setAttribute("rows",5);
                               textarea.setAttribute("style","overflow:hidden;color: white; font-size: 30px;margin-left:10px;position:relative;margin-top:5px;background:transparent;border:thin;outline:none;");
                               textarea.value=all_sel_questions[(question_shuffled_array[i])];
textarea.addEventListener('onClick', clickonTextArea, false); //Here i am trying to enable click listner on this textarea.

启用 onClick 侦听器的第二种方法:

textarea.onClick= clickonTextArea; //但这不是在点击时调用它是否在加载html时调用。

4

1 回答 1

0

尝试更改 onClick 以单击事件侦听器

textarea.addEventListener('click', clickonTextArea, false);
于 2013-07-08T07:44:46.570 回答