我在页面中有多个表单,我想获得特定表单的元素.例如:
如何获取表单id = 2的消息的值......提前感谢
只需使用属性选择器
$('form[id=2]') // get the form with id = 2 .find('input[name=message]') // locate the input element with attribute name = message .attr("value"); // get the attribute = value