CreateTime--2017年5月28日08:57:16
Author:Marydon

jQuery使form表单的第一个文本框聚焦

/**
 * 使form表单的第一个文本框聚焦
 */
function makeFirstTextFormElementFocused (formId) {
    $('#' + formId + ' :text').eq(0).focus();
}

  测试:

window.onload = function() {
    makeFirstTextFormElementFocused("IndexForm");
    
}

 

 

相关文章:

  • 2022-12-23
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2021-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-26
  • 2021-12-09
  • 2021-12-09
  • 2021-05-24
  • 2021-11-29
相关资源
相似解决方案