如何用JS往textarea框里面添加
JSP代码:<textareaclass=bigwrap="soft"cols="95"rows="3"name="prpLinteractiveContext"><%=...
JSP代码:
<textarea class=big wrap="soft" cols="95" rows="3" name="prpLinteractiveContext" ><%=prpLinteractiveDtoZ.getContext() %></textarea>
<input type="radio" name="prpLcomponentAuditStatus<%=tempNum %>" id="prpLcomponentAuditStatus<%=tempNum %>" value="4" onclick="comClickColor(this,<%=tempNum%>)" <%=prpLcomponentDto1.getAuditStatus().equals("4") ? "checked" : ""%>>
我的textarea中是有字符串的,想实现的是,单机单选框的时候,会把单选框的value添加到textarea中 展开
<textarea class=big wrap="soft" cols="95" rows="3" name="prpLinteractiveContext" ><%=prpLinteractiveDtoZ.getContext() %></textarea>
<input type="radio" name="prpLcomponentAuditStatus<%=tempNum %>" id="prpLcomponentAuditStatus<%=tempNum %>" value="4" onclick="comClickColor(this,<%=tempNum%>)" <%=prpLcomponentDto1.getAuditStatus().equals("4") ? "checked" : ""%>>
我的textarea中是有字符串的,想实现的是,单机单选框的时候,会把单选框的value添加到textarea中 展开
4个回答
展开全部
<input type="radio" name="prpLcomponentAuditStatus<%=tempNum %>" id="prpLcomponentAuditStatus<%=tempNum %>" value="4" onclick="comClickColor(this,<%=tempNum%>)" <%=prpLcomponentDto1.getAuditStatus().equals("4") ? "checked" : ""%>
onclick="prpLinteractiveContext.value+=this.value">
其中prpLinteractiveContext在这个节点不一定能够检索到,因为你写的是name,最好把textarea的name改成id,然后用document.getElementById('prpLinteractiveContext').value += this.value这样来做。
onclick="prpLinteractiveContext.value+=this.value">
其中prpLinteractiveContext在这个节点不一定能够检索到,因为你写的是name,最好把textarea的name改成id,然后用document.getElementById('prpLinteractiveContext').value += this.value这样来做。
更多追问追答
追问
那如何用JS控制从textarea里面删除东西啊?
追答
document.getElementById('prpLinteractiveContext').value = document.getElementById('prpLinteractiveContext').value.substring(0,document.getElementById('prpLinteractiveContext').value.length-1);//每次删1个字符,自己控制后面的数字。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
两个最简单的方法,给textarea添加一个id
方法一:
("#id").attr("value","赋值");
方法二:
document.getElementById('id').innerText="赋值";
方法一:
("#id").attr("value","赋值");
方法二:
document.getElementById('id').innerText="赋值";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
document.getElementById('prpLinteractiveContext').value = 需要写入的东西
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询