我正在使用blur()将用户在表单中编写的内容复制到注册向导末尾的摘要页面中。这很好用。

但是,当我预设了一些字段值并且这些值正确时,不会复制任何内容,因为用户可能不会与该特定文件进行交互。他们只会点击继续。

有没有一种方法可以触发所有文本字段,文本区域以使这些值也被复制?

这是我正在使用的功能:

/**
 *  Author: Thomas Kile
 *  Desc:   Copy text from a form element into a given tag.
 **
 *  @param string $type type of form element
 *  @param string $from Id of form element to copy text/value from.
 *  @param string $to Id of element to copy text/value into.
 */
    function copyFormData(type,from,to)
    {
        switch (type)
        {
            case 'text':  var copied_text = $(from).val();  break; //  get input text value
            case 'select': var copied_text = $(from+' option:selected').text();  break;
        }
        $(to).text(copied_text);   //  put inside this tag
    }


这就是我的使用方式:

$(firstName).blur(function(){   copyFormData('text',firstName,'strong#firstName');  });
$(lastName).blur(function(){    copyFormData('text',lastName,'strong#lastName');    });


我应该在哪里放置trigger()事件?
一旦使用getJSON提取了列表,就在select> first选项上使用了trigger(),以便在链接的选择对象中自动填充下一个列表。
但这有点不同...

最佳答案

您可以使用把戏:)

$('input').each(function(){
  $(this).trigger('blur');
  //each input event one by one... will be blured
})

09-18 02:05