我需要动态设置DIV元素内的文本。什么是最好的浏览器安全方法?我有可用的prototypejs和scriptaculous。
<div id="panel"> <div id="field_name">TEXT GOES HERE</div> </div>
该函数如下所示:
function showPanel(fieldName) { var fieldNameElement = document.getElementById('field_name'); //Make replacement here }
我将使用update支持纯文本,HTML代码段或定义toString方法的任何JavaScript对象的Prototype 方法。
update
toString
$("field_name").update("New text");