js控制输入框禁止输入和允许输入

本文介绍使用JavaScript来控制网页表单中输入框的状态,包括禁用和启用多个输入框的功能。通过监听特定按钮的点击事件及鼠标移出事件实现交互逻辑。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

初始,部分输入框禁止输入:

$(document).ready(function(){
$("#fundCode").prop("disabled",true);
$("#convertFundCode").prop("disabled",true);
$("#allowtradeVol").prop("disabled",true);
$("#appVol").prop("disabled",true);
$("#passwd").prop("disabled",true);
$("#confirmBtn").prop("disabled",true);
if($("#custType2").val() == null || $("#custType2").val() == ""){
$("#selectBtn").prop("disabled", true);
}

});

当点击按钮之后,鼠标移出按钮,部分输入框允许输入,并且另一部分禁止输入:

$("#selectBtn").click(function(){

       $("#selectBtn").mousemove(function(){

                                   $("#appVol").prop("disabled", false);
           $("#fundCode").prop("disabled", false);
           $("#adviserCode").prop("disabled", false);
           $("#convertFundCode").prop("disabled", false);
           $("#passwd").prop("disabled", false);
           
           $("#selectBtn").prop("disabled", true);
           $("#riskLevel").prop("disabled", true);
           $("#financeAcc").prop("disabled", true);
           $("#custType").prop("disabled", true);

           $("#accNo").prop("disabled", true);

                  }
});

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值