ユーザー入力のみを許可する方法
-Ve or +Ve
Javaスクリプトを使用します。
次のように試しましたが、テキストボックスに値を入力できません。
function rhFactor(txtBoxObj)
{
var pve = "+ve";
var nve = "-ve";
var ve = false;
if( validTxtBoxObj(txtBoxObj))
{
if(pve == txtBoxObj.value || nve == txtBoxObj.value )
{
ve = true;
}
if(ve == false)
{
// alert('Allowed RH Factors - +ve,-ve');
txtBoxObj.value="";
}
return false;
}
return true;
}
これは私が呼んだ方法です
onkeyup="rhFactor(this)"
アップデート :
function validTxtBoxObj(txtBoxObj)
{
if(txtBoxObj != null) return true;
return false
}
この仕事を手伝ってください。