du970294 2015-02-25 09:53
浏览 9
已采纳

如何为表格中的所有输入类型应用js

i want to apply js for all form input, I tried with below js

$('input #guest-login-form-register-form_es_').keyboard();

But this is not working for me.how can i apply this js ?

  • 写回答

1条回答 默认 最新

  • duanke9540 2015-02-25 10:08
    关注
    $('#guest-login-form-register-form_es_  input').keyboard();
    

    will work.

    The one that you are using selects form with id "#guest-login-form-register-form_es_" and is a child of input, Which is what you don't want.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?