我有一个 html 表单和一些 php 以及一点点 javascript。该表单有两个输入标签。两个输入标签都有类属性。我想将类值“存储”在 PHP 变量中,以便在单击提交后回显。
我尝试将 javascript 与第一个 php 变量($firstclass)集成,但即使作为警报()也无法使其正常工作。我真的不想提醒类值,但认为这将有助于找到解决方案。
<form action="" method="post">
<input type="text" name="input1" class="hidden_class_1">
<input type="text" name="input2" class="hidden_class_2">
<input type="submit" name="submit">
</form>
<?php
$firstclass = ""; //hidden_class_1
$secondclass = ""; //hidden_class_2
$firstclass = "<script type=\"application/javascript\">alert(('this.className').attr('class'))</script>";
$secondclass = ""; //ideally hidden_class_2
if(isset($_POST['submit'])){
echo "<h2>First Input Class Value: ".$firstclass."</h2>";
echo "<h2>Second Input Class Value: ".$secondclass."</h2>";
}
我希望输出如下;
第一个输入类值: hidden_class_1
第二个输入类值: hidden_class_2
蛊毒传说