gpt4 book ai didi

jquery - 如何使用 JQuery 检索文本框值?

转载 作者:行者123 更新时间:2023-12-03 22:06:02 25 4
gpt4 key购买 nike

Possible Duplicate:
How do I get the value of a textbox using jQuery?

在表单提交时,我试图获取下面文本框的值并将其放入网址

<input type="text" style="width: 300px" id="fromAddress" name="from" value="" />&nbsp;

这是我的 jquery 代码:

<script type='text/javascript'>
$(document).ready(function() {

$(":submit").click(function(e) {

var from = $("input#fromAddress").text;
$('div#printdirec').html('<a target="_blank" href="http://maps.google.com/addr=' + from + '&daddr">Print Directions</a>');

});

});
</script>

当我查看 URL 时,它没有正确的发件人地址。

最佳答案

您需要使用val()函数来获取文本框值。 text 不作为属性而存在,仅作为函数存在,即使这样,它也不是在这种情况下使用的正确函数。

var from = $("input#fromAddress").val()

val() 是获取输入值的标准函数。

关于jquery - 如何使用 JQuery 检索文本框值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1320088/

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