'return false' 语句外函数错误

'return false' statement outside function error

我一直在尝试将以下 Javascript 代码实现到 Wordpress 项目的头部。我在这里找到了原始方法:jQuery isotope query filtering results for url 但是最后一个 'return false;' 一直抛出错误 'return not in function'。诚然,我不得不更新脚本以使用 jQuery 而不是原始脚本中的 $ 并且包含了 jquery.cookie.js ,因为他们在他们的工作示例中使用了它(因为认为它是旧的)但想知道如果有人可以针对 return false 错误提出解决方法,以便我可以让这个概念与 jQuery 一起使用?谢谢

<script>
// filter items when filter link is clicked
  jQuery(document).ready( function() {
  jQuery("#filters a").click(function(){
   var selector = jQuery(this).attr('data-filter');
  jQuery('#portfolio').isotope({ filter: selector });
   return false;
  });
  });
</script>
<script>
  // Set cookie based on filter selector
  jQuery("#cookiefilter a").click(function(){
   var selector = jQuery(this).attr('data-filter');
   $.cookie("listfilter", selector, { path: '/projects/' });
  }); 
  if ( $.cookie("listfilter") ) {
   jQuery('#portfolio').isotope({ filter: $.cookie("listfilter") });
   $.cookie("listfilter", null, { path: '/projects/' });
   return false;
  }
  
</script>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
 * jQuery Cookie plugin
 *
 * Copyright (c) 2010 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */
jQuery.cookie = function (key, value, options) {

    // key and at least value given, set cookie...
    if (arguments.length > 1 && String(value) !== "[object Object]") {
        options = jQuery.extend({}, options);

        if (value === null || value === undefined) {
            options.expires = -1;
        }

        if (typeof options.expires === 'number') {
            var days = options.expires, t = options.expires = new Date();
            t.setDate(t.getDate() + days);
        }

        value = String(value);

        return (document.cookie = [
            encodeURIComponent(key), '=',
            options.raw ? value : encodeURIComponent(value),
            options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
            options.path ? '; path=' + options.path : '',
            options.domain ? '; domain=' + options.domain : '',
            options.secure ? '; secure' : ''
        ].join(''));
    }

    // key and possibly options given, get cookie...
    options = value || {};
    var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
    return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
</script>
</head>

错误正确。您的 "return false" 出现在函数之外,这是不允许的。

<script>
    // Set cookie based on filter selector
    jQuery("#cookiefilter a").click(function(){
        var selector = jQuery(this).attr('data-filter');
        $.cookie("listfilter", selector, { path: '/projects/' });
    });    /****END OF FUNCTION****/

函数()到此结束。从这里开始,你在函数之外:

    if ( $.cookie("listfilter") ) {
        jQuery('#portfolio').isotope({ filter: $.cookie("listfilter") });
        $.cookie("listfilter", null, { path: '/projects/' });
        return false;
    }

也许你不小心提前结束了这个功能。
如果您将标记为 END OF FUNCTION 的行移动到该