function getComment(){ var location = ; do-6ren">
gpt4 book ai didi

javascript - scriptlet 的文本框值

转载 作者:搜寻专家 更新时间:2023-10-31 08:48:34 25 4
gpt4 key购买 nike

    <form name="myForm" method="post" onsubmit="return getComment()">
<textarea id="commentarea"></textarea>
<input type="text" name="locate" value="<%=rs.getString("location")%>">
<input type="submit" value="View Comment">
</form>


function getComment(){
<% String locate=request.getParameter("locate"); %>
var location = <%= locate%>;
document.getElementById('commentarea').value=location;
return false;
}

每次我单击“查看评论”时,都不会打印任何值。我想在 scriptlet 中访问定位并在文本区域中打印值。我知道这不是访问它的最佳方式,但我需要以这种方式访问​​它。谁能帮我?

最佳答案

您遗漏了位置变量值的双引号/单引号。如果您不需要提交表单,只需使用一个按钮输入元素。

<form name="myForm" method="post">
<textarea id="commentarea"></textarea>
<input type="text" name="locate" value="<%=rs.getString("location")%>">
<input type="button" value="View Comment" onclick="getComment()">
</form>


function getComment(){
<% String locate=request.getParameter("locate"); %>
var location = "<%= locate%>";
document.getElementById('commentarea').value = location;
}

关于javascript - scriptlet 的文本框值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8418615/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com