所以我目前只是试图获取几个输入字段的标签文本
http://codepen.io/leongaban/pen/fJGie
^在上面的codepen中我创建了2个手机输入字段。但是无法获得每个标签文本。最初我在输入上有added_phone
类,但后来将其移到了父li
。
我尝试$(this.children)
没有错误,但没有输出,尝试了var tag = $(this).children.label.text()
但是出错了
var elems = $('.added_phone');
elems.each( function(i) {
console.log(i);
var tag = $(this.children.label).text();
var value = $(this).val();
console.log('tag = '+tag);
console.log('value = '+value);
});
你看到我在这里做错了吗?
答案 0 :(得分:5)
$(this).children.label.text()
是jQuery的无效语法,你可能是这个意思:
$(this).children("label").text()