• fn {Function} 在查询字符串中的每个键值对的调用函数。
    • thisArg {Object} 当 fn 调用时,被用作 this 值的对象。

    在查询字符串中迭代每个键值对,并调用给定的函数。

    1. const myURL = new URL('https://example.org/?a=b&c=d');
    2. myURL.searchParams.forEach((value, name, searchParams) => {
    3. console.log(name, value, myURL.searchParams === searchParams);
    4. });
    5. // 打印:
    6. // a b true
    7. // c d true