gpt4 book ai didi

JavaScript、HTML、JSP onClick 语句

转载 作者:行者123 更新时间:2023-11-28 21:13:18 25 4
gpt4 key购买 nike

有没有办法使用文本字段中的值作为按钮 onclick 语句中的参数值。例如,如果您有一些名为“name”的文本字段,并且有另一个名为“button”的按钮,则单击时将转到同一页面“page.jsp”,其中参数“par”等于文本字段值。这就是我目前正在做的事情:

out.print("<input type = 'button' name = 'noName' value = 'Click Me' onclick =" + '"' + "window.location.href = 'http://page.jsp?par=" + document.form.name.value + "'" + '"');

但由于某种原因,它不喜欢 par="+ document.form.name.value

有什么建议吗?

最佳答案

像这样吗?

<script>
function doSomething(txt){
alert(txt); //alert the text maybe?
//do more things...
}
</script>
<input onClick="doSomething(this.value)">

this.value 表示文本字段中的值。

关于JavaScript、HTML、JSP onClick 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8199315/

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