使用 jquery 获取此表单输入
你好,我在每棵树中有一个很大的产品表,有一个带有两个输入的表单。 一种输入是管理员可以设置产品价格的文本。 第二个隐藏在产品 ID 值中。
现在有这个 jquery 代码。
$(function() {
$(".form").submit(function() {
var dyo_id = $(".dyo_id").val();
var price = $(".setprice").val();
$.ajax({
type: 'post',
url: 'setprice.php',
data: 'price='+price+'&dyo_id='+dyo_id,
cache: false,
success: function(data) {
$('.price'+dyo_id).html(data);
alert('success');
}
});
return false;
});
});
问题在于他们选择第一个产品的第一个输入的变量,
这只是一个简单的问题,我如何选择我所在的当前输入?
抱歉我的英语不好。
hello i have a big table of products in each tree there is a form with two inputs.
one input is text where the admin can set the product price.
the second one is hidden with the value of the product id.
now there is this jquery code.
$(function() {
$(".form").submit(function() {
var dyo_id = $(".dyo_id").val();
var price = $(".setprice").val();
$.ajax({
type: 'post',
url: 'setprice.php',
data: 'price='+price+'&dyo_id='+dyo_id,
cache: false,
success: function(data) {
$('.price'+dyo_id).html(data);
alert('success');
}
});
return false;
});
});
the problem is with the variables they select the first inputs of the first product
it's just a simple question how can i select the current inputs that i am on?
sorry for my poor english.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不尝试使用
serialize()
?Why don't you try using
serialize()
?将 jquery 的上下文设置为
this
(这是当前表单):Set the context of jquery to
this
(which is the current form):