任何人都可以帮我如何使用按钮打开和关闭。
当前代码:
<form>
<input type="button" value="one" disabled />
<input type="button" value="two" />
</form>
答案 0 :(得分:1)
您需要使用JavaScript。我的例子使用jQuery。 引用的其他例子有点复杂,所以我为你做了这个。
// find the elements
var $form = $('form');
var $buttons = $form.find('input[type=button]');
// event logic
$buttons.click(function(e) {
$buttons.attr('disabled', false);
$(this).attr('disabled', true);
});
将它放在页面上的onload或DomReady处理程序中。如果你想要检查小提琴: http://jsfiddle.net/G5e48/