首先,我找不到类似的问题。(过分强调I)
这可能是个简单的问题。我优化了一个js文件,其中包括以下代码。
commentform.find('#comment-status').remove();
commentform.find('.form-submit .comment-status-ajax-loader').remove();问题:能把它们结合起来吗?例如:
commentform.find('#comment-status, .form-submit .comment-status-ajax-loader').remove();发布于 2017-03-04 11:15:34
在“闪电雷霆”的快速反应之后,我似乎正确地回答了我自己的问题。在这里,所有其他人都在寻找同样的解决方案:
commentform.find('#comment-status, .form-submit .comment-status-ajax-loader').remove();https://stackoverflow.com/questions/42595235
复制相似问题