最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Replace characters in field on form submit - Stack Overflow

programmeradmin1浏览0评论

For example, if the field value was "John Wayne" I would want it to be replaced with "John_Wayne"

I'm thinking I can acplish this through jQuery, basic idea is below:

$('#searchform').submit(function() {

//take current field value
//replace characters in field
//replace field with new value

}); 

Any help is appreciated.

For example, if the field value was "John Wayne" I would want it to be replaced with "John_Wayne"

I'm thinking I can acplish this through jQuery, basic idea is below:

$('#searchform').submit(function() {

//take current field value
//replace characters in field
//replace field with new value

}); 

Any help is appreciated.

Share Improve this question asked Dec 24, 2011 at 5:35 TimTim 1,4502 gold badges15 silver badges21 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 10

You could use the overload of val that takes a function:

$("input:text").val(function (i, value) {
    /* Return the new value here. "value" is the old value of the input: */
    return value.replace(/\s+/g, "_");
});

(You'll probably want your selector to be more specific than input:text)

Example: http://jsfiddle/nTXse/

If you want to look at all of your form elements without specifying them individually, you could do something like:

$('#searchform').submit(function() {
    $.each($(':input', this), function() {
        $(this).val($(this).val().replace(' ', '_'));
    });
});

You might have to pay attention to the type of the element, and that it's visible, enabled, a certain type, etc.


EDIT: I would use Andrew's answer. This was just the first solution that popped into my head. This one might ultimately give you slightly more control over each field in your form, but Andrew's is short and sweet.

Use the onkeyup HTML element attribute and regular expressions:

<input type="text" onkeyup="this.value=this.value.replace(/[Search Expression]/flag,'New String');">

This solution prevents the user from typing a value outside the pattern established by the regex.

For your case, use:

<input type="text" onkeyup="this.value=this.value.replace(/[\s]/g, '_');">
发布评论

评论列表(0)

  1. 暂无评论