Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
javascript / jquery / html / css /其他东西是否可以在输入所述字段时阻止输入字段内的所有文本?
这听起来像n00b问题,但我找不到答案>_<
您的意思是一旦输入事件触发disabled后您可以使用javascript添加的属性吗?blur
disabled
blur
$("input[type=text]").blur(function(){ if($(this).val().length){ $(this).attr("disabled","disabled"); } });
应该做的伎俩(未经测试,但应该工作)。