gpt4 book ai didi

javascript - jQuery 值帮助

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

我在获取输入字段的值时遇到问题。

function Send(id){ 
var send_to=$("#id").val();
$.post("send.php", { id:id }, function(data) { if(data==="OK"){ } else { } });
}

以下是该页面的示例。

<input type=text id=4543><button onclick=Send(4543);>SEND</button>
<input type=text id=8643><button onclick=Send(8643);>SEND</button>
<input type=text id=8645><button onclick=Send(8645);>SEND</button>
<input type=text id=2421><button onclick=Send(2421);>SEND</button>

我需要获取其 id 传递给 send 方法的输入控件的值。

谢谢! :)

最佳答案

如果我理解正确的话:

var send_to=$("#id").val();  

应该是

var send_to=$("#" + id).val();

关于javascript - jQuery 值帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4496303/

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