我有3个文本框的页面。我找到所有有价值的文本框并打印其文本。怎么办?
答案 0 :(得分:3)
这是获取页面中非空的所有值的代码:
$('input[type=text][value!=]').each( function() {
var value = $(this).val();
// do whatever you want with the value
});
答案 1 :(得分:1)
我认为你需要
$("input[type=text]").val();
或
$("textarea").val();
最有可能的是,你需要两者,所以
$("input[type=text][value!=] textarea[value!=]").val();
将搜索用户可以在其中插入文本的页面上所有非空元素的内容。
答案 2 :(得分:0)
使用selector/text和selectors/attributeNotEqual。
$("form input:text[value!=]").each(function() {
$(this).val();
});
答案 3 :(得分:0)
$(':text').each(function() {
alert(this.value);
});
答案 4 :(得分:-1)
$('input').each(function(){
alert(this.value);
});