我有一个像复选框一样工作的 DIV 元素。我想将其“值”属性提交到基于 PHP 的表单中,但它不会将 DIV 响应传递给 PHP 文件。
HTML:
<form action="test.php" method="post">
<div id="test1" value="testvalue" name="test" checked="checked"></div>
<input type="submit" />
</form>
PHP:
<?php
$test = $_POST['test'];
echo $test;
?>