这是我的 javascript 函数:
function GetCellValues()
{
var rows = document.getElementsByTagName('tr');
var str = '';
for (var c = 1 ; c < rows.length ; c++)
{
str += '\n';
var row = rows[c];
var inputs = row.getElementsByTagName('input');
for (var k = 0 ; k < inputs.length ; k++)
{
str += inputs[k].value + ', ';
}
}
document.getElementById('hide').value = str;
}
这是我的 html 标签。在此标记中,我想使用输入类型“隐藏”而不是提交,并希望在 php 页面中打印此值。
<form action = "project.php" method = "POST">
<h1><u>PROJECT</u> :</h1>
<!-- here I want input type 'hidden' -->
<input type="submit" id = "hide" name="hide"onclick = "GetCellValues()" />
</form>
这是我的 php 代码:project.php
<?php
$hide = isset($_POST['hide']) ? $_POST['hide'] : "";
echo($hide);
?>