admin管理员组

文章数量:1350125

I mask the input of fields like SSN to contain dashes when they are displayed but would like the value that is submitted to be only the numbers.

For example, my SSN is formated as:

<input type="text" name="ssn" alt="999-999-9999"/>

And upon entering "1234567890" I get the nice formatted output.

123-456-7890

Now I would like only the numbers to be submitted as "1234567890". Is this easily possible?

For reference: /

I mask the input of fields like SSN to contain dashes when they are displayed but would like the value that is submitted to be only the numbers.

For example, my SSN is formated as:

<input type="text" name="ssn" alt="999-999-9999"/>

And upon entering "1234567890" I get the nice formatted output.

123-456-7890

Now I would like only the numbers to be submitted as "1234567890". Is this easily possible?

For reference: http://www.meiocodigo./projects/meiomask/

Share Improve this question asked Nov 19, 2009 at 15:41 Jake WhartonJake Wharton 76.1k23 gold badges226 silver badges232 bronze badges 1
  • when using a plugin is a good idea to put a link to it – Elzo Valugi Commented Nov 19, 2009 at 15:42
Add a ment  | 

3 Answers 3

Reset to default 4

This would probably solve your problem. It's quick-n-dirty though. It just removes the '-' signs with a regex and spits it out into a hidden field which will then be submitted.

<input type="text" id="ssnMasked" />
<input type="hidden" id="ssn" name="ssn" />
<input type="button" value="Submit" onclick="RemoveMaskAndSubmit()"/>

<script type="text/javascript">
    function RemoveMaskAndSubmit() {
        $('#ssn').val($('#ssnMasked').val().replace(/\-/g,''));
        $('#formId').submit();
    }
</script>

I'm not sure on the etiquette on answering my own question but I actually used a fairly simple solution derived from both of your answers.

Problems arose from using hidden fields based on the site using the Struts framework and it's automatic form processing and special JSP form tags. I would change the backend to do all the processing there but as it's the middle of the day I can't restart the Tomcat server to load in the changes without crippling operations for a short time.

On submit I call a function UnmaskMaskedValue() which explicitly sets all the masked values to have a mask not containing the invalid characters.

function UnmaskMaskedValue() {
  $('#ssn').setMask('9999999999');
}

This changes the value before any data is submitted to be valid on the backend.

I appreciate both of your suggestions and would rate you up if only I was able to.

Looks like this option is deprecated.

<a onclick="jQuery('#unmasked_string').html( jQuery('#unmasked_input').unmaskedVal() );return false;" href="#">Get the unmasked value from the input</a>

本文标签: javascriptSubmit unmasked form value with jQuerymeioMaskStack Overflow