我的button2
已停用,当有人点击Button1
时,Button2
将被激活。
以下是我想要使用的一些代码:
function fn2() {
c >= 1 ? alert("Bla Bla") & window.open("login.php", "_self") : window.alert("Please Click")
}
我是JavaScript新手。
答案 0 :(得分:1)
此代码应该这样做。我认为这些按钮具有ID button1
和button2
。
//When button1 is clicked...
$('#button1').click(function() {
//Set the property disabled on button2 to false.
$('#button2').prop('disabled', false);
});
并且,像往常一样,确保在DOM准备好之前不执行此代码(例如将其包装在$(function() { ... });
中)。