gpt4 book ai didi

jquery - 在 jQuery 中提交后获取值

转载 作者:行者123 更新时间:2023-12-01 02:19:39 24 4
gpt4 key购买 nike

我有一个表单,只有一个“搜索”字段和一个提交按钮。我的 jQuery 代码如下所示:

$( "form.qsearch" ).submit(function() {
alert(inputsearchfield);
})

我想做的只是提醒搜索框中的值。我在网上搜索了又搜索,找不到这个简单代码的任何内容。

最佳答案

试试这个DEMO

<form id="sForm">
<input type="text" name="search" id="search" />
<input type="submit" />
</form>

jquery代码

$(document).ready(function(e){
$('#sForm').on('submit',function(){
alert( $('#search').val() );
});
});

关于jquery - 在 jQuery 中提交后获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27700009/

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