将元素值另存为iframe中的列表

时间:2019-04-25 13:08:20

标签: javascript jquery iframe

我想保存来自不同iframe的表格中的所有数据。该表格结构类似于iframe中的表格:

<iframe title="Music_93737192">
<input id="R28_1" type="text" value="Rock N Roll" />d <br />
<input id="R28_2" type="text" value="Pop" /><br />
<input id="R28_3" type="text" value="Hip-Hop" /><br />
<input id="R28_4" type="text" value="Jazz" /></p>

下面的代码完美地收集了第一个数据。

var matches = document.querySelector('[title^="Music_"]').contentWindow.document.getElementById('R28_1').value;
alert(matches);

如果每个页面的行数都不相同,我可以从表中将所有数据收集到一个列表/数组/变量的方法是什么?将来,我希望将这些数据与我自己的列表进行匹配。

0 个答案:

没有答案