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.
我正在为客户做一个项目。该站点使用 jQuery 1.8.2。在以前的项目(jQuery 1.9.1)中,我使用:
$("select#testbuecher").trigger("add", [$item]);
对于自定义事件。这不适用于 1.8.2。
Firebug中的错误:
NS_ERROR_XPC_NOT_ENOUGH_ARGS:参数不足
这里有谁知道代码有什么问题吗?
我刚刚找到了解决方案。而不是只使用“触发器”,“触发器处理程序”来完成这项工作。
$("select#testbuecher").triggerHandler("add", [$item]);