我想在onsubmit上添加啓用和禁用功能,或相應地禁用提交按鈕。onsubmit上的帖子值以及啓用和禁用提交按鈕
當我點擊啓用按鈕時,它應該是不可點擊(禁用)和禁用按鈕應該是可點擊(啓用),當我點擊禁用按鈕的另一種方式 - 啓用和禁用功能工作正常,但我面對一個問題:當我發佈print_r($ _ POST)的值時,不會顯示任何內容。爲什麼?
JS
$('input').click(function() {
var id = $(this).get();
toggleButtons(id);
});
function toggleButtons(id){
// Check for attr != disabled here
$('input').removeAttr("disabled");
$(id).attr("disabled","disabled");
}
HTML
<?php print_R($_POST); ?>
<!DOCTYPE html>
<html>
<head>
<script src="code.jquery.com/jquery-latest.js"></script>;
</head>
<body>
<form method="post" action="">
<input type="submit" value="Button1" disabled="disabled" name="testing" id="testing"/>
<input type="submit" value="Button2" name="test" id="test"/>
</form>
</body>
</html>
告訴我們你做了什麼,我們一定會幫你... – Lal
這是HTML代碼:<?PHP \t的print_r($ _POST); ?> <!DOCTYPE HTML> \t
\t \t \t \t \t \t \t <形式方法=」 POST 「行動= 」「> \t \t \t \t \t \t \t \t \t –不要添加它作爲評論..請編輯問題並粘貼HTML .. – Lal