Вы хотите получить значение поля ввода в каждой строке таблицы? Может быть получено с помощью чистого javascript :
<script>
var values=document.getElementsByTagName("input");
alert(values[0].value);
</script>
// document.getElementsByTagName (name) : Поиск элементов по имени тега
Это можно скопировать:
<script type="text/javascript">
function copy()
{
var values=document.getElementsByTagName("input");
values[0].select(); // Select object
document.execCommand("Copy"); //Execute browser copy command
alert("Has been copied, can be pasted");
}
</script>
<input type="button" onClick="copy()" value="Click Copy Code" />
копировать несколько строк:
<script type="text/javascript">
function copy()
{
var values=document.getElementsByTagName("input");
var textarea =document.createElement('textarea'); // create textarea label
//Traverse the content of the table and splice it into the content of the textarea
for(var i=0;i<values.length; i++){
textarea.innerHTML= textarea.innerHTML+=values[i].value+'\n'
}
document.body.appendChild(textarea) // Add to body
textarea.select();
document.execCommand("Copy"); //Execute browser copy command
textarea.remove();
alert("Has been copied, can be pasted");
}
</script>
<input type="button" onClick="copy()" value="Click Copy Code" />