0

我有一个这样的字符串:

<fieldset>
<legend>Sondage</legend>
<input type="hidden" value="formulaire_test/poll1352736068616/testencode" name="pollpost">
<p class="question">Q1</p>
<p class="response">
<input id="R010101" type="radio" value="A" name="R0101">
<label for="R010101">R11</label>
</p>
<p class="response">
<input id="R010102" type="radio" value="B" name="R0101">
<label for="R010102">r12</label>
</p>
<p class="question">Q2</p>
<p class="response">
<input id="R010201" type="radio" value="A" name="R0102">
<label for="R010201">r2</label>
</p>
<p class="response">
<input id="R010202" type="radio" value="B" name="R0102">
<label for="R010202">r22</label>
</p>
<p class="submit">
<input type="submit" value="Votez">
</p>
</fieldset>

我想用 jQuery 检索例如值<legend>、值<p class=question>或所有输入值..

你有什么主意吗 ?

我可以把这个字符串放到一个 jQuery 对象$(mystring)中,然后呢?

谢谢 !

4

3 回答 3

2

您可以使用以下代码将输入值推送到数组中:

var arr = new Array();
$(mystring).find('input').each(function() {
    arr.push($(this).val());
});
于 2012-11-13T08:46:07.767 回答
1

您可以使用

$(mystring).find('legend').text();

或者

$(mystring).find('input').val();
于 2012-11-13T08:46:46.437 回答
0

做就是了

$('legend').html(); // Text inside Legend

var questions = new Array();
$('p.question').each(function(){
     questions.push( $(this).html() ) ; // Questions class text into array
});

var inputs = new Array();
$('input').each(function(){
     inputs.push(this.value) ; // Input values into array
});

如果你想在里面找到这些,$(mystring)只需在选择器前面加上

$('mystring').find( selector )
于 2012-11-13T08:45:30.113 回答