jQuery粗心错误

0

遇到一个SB问题,错误如下:

Uncaught InvalidStateError: Failed to read the 'selectionDirection' property from 'HTMLInputElement': The input element's type ('hidden') does not support selection.

开始我一直以为是因为input是隐藏的原因,后来改为显示后,前面到时没问题了,但是后来使用JSON.stringify转换还是出了上面的问题,原来最后我没有调用.val()方法。

旧代码:

ele.find("input[name='name']");

新代码:

ele.find("input[name='name']").val();