1

我似乎无法在互联网上找到我的问题的答案。我不禁认为这是一个愚蠢的错误,但是我已经检查了我的代码至少 6 到 7 次,甚至休息一下用新的眼光看它。如果有人可以帮我看一下,那将是超级甜蜜的!

<div id="input_alignment" style="font-size:20px">

<?php 

if(!($Valid_Profile == true)){ ?>
    ...Form that has no issues
<?php }
else{ ?>

    <form action="Redact_Profiles.php" style="font-size:19px" method="post">
    <input type="hidden" value="<?php echo $Valid_Profile ?>" name="Valid_Profile" />
    <input type="hidden" value="<?php echo $Username ?>" name="Username" />
    <input type="hidden" value="<?php echo $Password ?>" name="Password" />

    <br />
    &emsp;&emsp; <?php echo $Profile_Username . "<br>"; ?>
    <input type="submit" style="font-size:9px" value="Edit" name="" />&ensp;<?php echo $Profile_Password . "<br>"; ?>
    <br />
    <br />
    ......<br />
    <input type="submit" style="font-size:9px" value="Edit" name="" />&ensp;<?php echo $Profile_First_Name . "<br>"; ?>
    <input type="submit" style="font-size:9px" value="Edit" name="" />&ensp;<?php echo $Profile_Last_Name . "<br>"; ?>
    &emsp;&emsp; <?php echo $Profile_EMail . "<br>"; ?>
    <br />
    <input type="submit" style="font-size:9px" value="Edit" name="" />&ensp;<?php echo $Profile_Location . "<br>"; ?>
    <input type="submit" style="font-size:9px" value="Edit" name="" />&ensp;<?php echo $Profile_Referee_Password . "<br>"; ?>
    <input type="submit" style="font-size:9px" value="Edit" name="" />
    </form>
<?php }

?>
</div>

最后两个提交按钮不起作用。当我拿走包含$Profile_Locationand的 php$Profile_Referee_Password时,提交按钮起作用。

抱歉,我所说的不起作用意味着提交按钮没有响应。该页面不会重新加载,并且就像提交按钮被禁用一样。提交按钮看起来已启用,但就像它不想“按下”一样。

4

1 回答 1

7

经过 2 天的头痛后,我想通了:当提交按钮超出任何“div”的高度和宽度的范围时,它不会像按钮一样起作用,而更像是一张图片。因此,作为一种好的做法,当按钮无法正常工作时,请检查它是否确实位于您放入的容器的“外部”。
在查看源页面或任何错误检查时不会出现此错误. 但是,如果是这样,我不知道。如果有人感兴趣,我正在使用 Mac、Safari 6 和 CS5 Dreamweaver。

于 2012-09-02T23:20:00.880 回答