Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获得$(this).val() 我想要这样的下一个值:$(this+1).val()
$(this).val()
$(this+1).val()
试试.next()喜欢
.next()
$(this).next().val();
你可能需要next()
如果您想要输入框的下一个值,则可以添加 1
nextVal = $(this).val() + 1;
你应该使用.next()
$(this).next().val()
希望有所帮助