Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个有效的代码:
return form.find('input[name!=user_view]').serializeArray();
但我现在也想省略我添加的另一个输入框,但我不知道如何删除多个元素。
所以我想做这样的事情:
return form.find('input[name!=user_view],input[name!=client_view]').serializeArray();
但它不起作用。
什么是正确的函数/语法?
试试这个:
return form .find(':not(input[name=user_view],input[name=client_view])') .serializeArray();