簡體   English   中英

querySelectorAll不適用於偽類nth-last-child

[英]querySelectorAll does not work with pseudo class nth-last-child

我有這個javascript代碼:

var fieldsets = document.querySelectorAll('fieldset:nth-last-child("-n+2")');
console.log('fieldsets' + fieldsets);

我有4個字段集

我在Chrome檢查器中收到此錯誤:

Uncaught SyntaxError: Failed to execute 'querySelectorAll' on 'Document': 'fieldset:nth-last-child("-n+2")' is not a valid selector. 

我希望有人能幫幫忙! 謝謝 :)!

您不需要參數表達式周圍的引號。

var fieldsets = document.querySelectorAll('fieldset:nth-last-child(-n+2)');

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM