我正在用php开发一个项目,但是我的java不好。我正在尝试链接两个页面。第一页上有一个用于捐赠的按钮,其中包括“其他”按钮,其作用方式是用户应单击该按钮将其重定向到下一页,在该页面上,不应禁用该金额的输入文本字段。
我希望您能为我提供帮助,因为我在这里几乎阅读了有关onclick事件和其他选项的所有文章,并尝试了它们,但是没有运气。
//Code for the other button
<td style="padding: 6px;">
<span>
<form action="getcreditcard.php" method="POST">
<input type="hidden" value="<?php echo base64_encode(6); ?>" name="id">
<button type="submit" id="donate" value="Other" class="btn btn-warning" style="width: 100%;">Other</button>
</form>
</span>
</td>
//Code for the receiveing page getcreditcard.php
<
} else if (base64_decode($_POST['id']) == 6) {
$p_price ='Add Amount Here.';
$p_currency = 'USD';
$p_name = 'Donation Option 5';
}
>
and
<div class="form-row">
<label>
<span>Amount (USD)</span>
<input type="text" name="amount"placeholder="enter amount " value="$ <?php echo $p_price; ?>" disabled="true" required="true">
</label>
</div>
答案 0 :(得分:0)
像这样使用javascript jquery prop():
<!-- simple example: -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<form>
Input:
<input type="text" name="amount" id="amount" placeholder="enter amount " value="$ <?php echo $p_price; ?>" required>
</form>
<script type="text/javascript">
$(document).ready(function(){
$("#amount").prop("disabled", true);
});
</script>
答案 1 :(得分:0)
您可以使用只读 希望对您有帮助。
<input type="text" readonly value="<?php echo base64_encode(6); ?>" name="id">