0

是否有一个 jquery 函数可以在提交后限制一个文本字段的提交?一旦用户删除了该字段中的现有信息,如果他们改变主意,提交按钮将重新启用,他们将能够重新提交他们的文本。

例如:

- 用户正在制作一件 T 恤 - T 恤产品上只允许一行文本 - 一旦他们在字段中插入文本,该字段就会被禁用 - 如果他们删除或重置文本字段,则可以重新启用字段。

先谢谢了!

4

1 回答 1

0

我建议使用监听事件来限制输入的字符数,并在达到该限制后禁用该字段。然后可能是一个重置按钮重新开始。

前任:

//this function would freeze the field if they reach a char max.
//I would suggest changing the field color tho, and disabling the
//submit button if they exceed the max
$("#tshirt_text").keyup(function(){
    var content = $(this).val();
    if( content.length = 26 ) { //or whatever your char max is
        $(this).prop( "disabled", true );
    }
});

//this function could freeze the field when it loses focus 
$("#tshirt_text").blur(function(){
    $(this).prop( "disabled", true );
}

//clear the field onclick
$("#clearButton").click(function(){
    $("#thsirt_text").prop( "disabled", false );
}
于 2015-01-30T19:34:39.157 回答