在我的php页面中,我设置了文本框的格式,如第一个字符大写,否则当用户输入它。适用于前端但适用于后端,当它转到数据库时,它作为简单文本插入.I希望它像在ui中显示的那样插入数据库。
我用来构建textbox'text的Jquery
$(".initial_cap").keydown(function(){
console.log("aaa");
var val = $(this).val();
if(val.length==1)
{
val = val.charAt(0).toUpperCase() ;
$(this).val(val);
}
});
HTML
<input class="form-control initial_cap" placeholder="Address1" required="required" maxlength="50" name="address1" type="text" value="" aria-required="true">
EX:当我输入任何内容时,请说helloword我的函数会将其转换为Helloword并设置为textbox的值,然后在数据库中将其作为helloword插入。