编程语言
首页 > 编程语言> > javascript-在提交时修剪文本框和texareas阻止提交表单

javascript-在提交时修剪文本框和texareas阻止提交表单

作者:互联网

我正在整理所有的文本框和文本区域.不适用于所有视图页面.

我在表单中使用了简单的html输入kendo DropDownList kendo AutoComplete.

当表单上有Kendo UI控件时,以下是我的Submit方法不起作用.

$('input[type="submit"]').click(function () {
   $('input[type=text], textarea').each(function () {
     if($(this).val()!=''){
       $(this).val($.trim($(this).val())); //Exception in chrome: paused on exception typeerror. Msg: undefined in not function.
     }
   });
});

我不知道怎么了我发现了特定于chrome浏览器的问题.

解决方法:

它只是剑道控制吗?他们的DropDownList实例呈现了这个(来自演示)

<input id="color" value="1" data-role="dropdownlist" style="display: none;">

请注意,没有type = text属性,因此您的选择器可能不包含此属性.

标签:kendo-ui,html,javascript,asp-net-mvc,jquery
来源: https://codeday.me/bug/20191029/1958769.html