1

こんにちは、私はこのスクリプトを持っており、特定の数 (8 つの数字) のみが許可されるように機能させようとしています。これに何を追加する必要がありますか??

<SCRIPT TYPE="text/javascript">

function numbersonly(myfield, e, dec)
{
var key;
var keychar;

if (window.event)
   key = window.event.keyCode;
else if (e)
   key = e.which;
else
   return true;
keychar = String.fromCharCode(key);

// control keys
if ((key==null) || (key==0) || (key==8) || 
    (key==9) || (key==13) || (key==27) )
   return true;

// numbers
else if ((("0123456789").indexOf(keychar) > -1))
   return true;

// decimal point jump
else if (dec && (keychar == "."))
   {
   myfield.form.elements[dec].focus();
   return false;
   }
else
   return false;
}
</SCRIPT>
4

1 に答える 1

1

属性size (size="8") をフィールドに直接追加するか、JS を使用して追加できます。

var sizeLimitation = document.createAttribute('size');
sizeLimitation.value = 8;
myfield.setAttributeNode(sizeLimitation);
于 2012-05-28T06:09:19.853 に答える