我写了onKeyPress事件,当用户输入一些文本时验证文本,然后从某些字段中选项卡应该验证文本,如果没有输入任何内容或输入的值不正确,应该给出错误通知用户并且焦点应该回到字段并且不得允许用户访问字段的帮助按钮以外的下一个字段。
<jade:input type="text" name="dtxtDesigCd"
value="" size="10" maxlength="8"
classname="input" disabledclass="disabled-input" style="color: black"
datasource="dsDesigHourDetail:desigCode"
onkeypress= "checkDesignation(this, event);">
</jade:input>
我还有一个自定义JSP标签“PickList”,它基本上是一个显示的按钮 从帮助窗口中选择后,在JSP中的文本字段中显示一个模态窗口,其中包含相关字段的数据库和数据库中的选定记录。
我们早期的供应商使用了修改过的SOFIA Framework,现在我必须维护代码。早期代码的问题是这个按钮必须双击以获得帮助,因为它使用onblur而不是onkeypress,并且需要多次尝试,因为它一直给出错误。
onblur的早期代码是
onblur="setValue('DESIGNATION');" onkeyup="capitalize(this);"
现已被
取代 onkeypress= "checkDesignation(this, event);">
JSP中的帮助按钮/ PickList的代码如下:
<rap:pickfromlist name="picklistDesignation" datasource="dsDesigHourDetail"
pflheading="Designation Details" focusfield="dtxtDesigCd"
pflcolumnsdesc="Designation Code, Description"
fieldlist="distinct emp_desig_cd, emp_desig_desc "
lookuptable="pmm_designation" orderby="emp_desig_cd"
targetproperty="desigCode, designation"
whereclause=" executive_post='N' and crew_flg = 'N'" />
在此字段中,指定的描述被捕获为从选项列表中挑选或在通过setValue方法提交表单之后,该方法通过表单和表单中的隐藏变量操作发送传递给服务器的值。
<jade:input type="text" name="dlblDesigDesc" value="" size="50"
classname="labeltext" style="color: black"
datasource="dsDesigHourDetail:designation" enabled="False">
</jade:input>
checkDesignation(obj,evt)定义为
function checkDesignation(obj, evt) {
var evt = (evt) ? evt : (window.event) ? event : null;
if (evt) {
var len = TrimString(obj.value).length;
alert("Designation : " + obj.value);
if (evt.keyCode == 9 && len >= 0) {
if (len == 0) {
setErrMessage('Designation must be entered and not blank');
document.forms[0].htmlPageTopContainer_pageForm_detailDesigHourForm_dtxtDesigCd.focus();
document.forms[0].htmlPageTopContainer_pageForm_detailDesigHourForm_dtxtDesigCd.value = '';
setValue('DESIGNATION');
return false;
} else {
capitalize(obj);
setValue('DESIGNATION');
return true;
}
}
}
}
答案 0 :(得分:1)
检查这个
$("#textbox").bind("onKeyPress ", function (e) {
if (e.altKey || e.ctrlKey || e.shiftKey){
return true;
}
else{
// you have this text box inner text in this.val() and can be checked with
your validate function.
}
});