代码不再起作用:jQuery.parseJSON需要有效的JSON字符串

时间:2018-02-10 18:20:17

标签: javascript jquery json wordpress jqmigrate

我是一名自编的初学者。我有一个复杂的主题,自2012年以来在中效果很好。从那以后,一些东西不再起作用了。虽然我经常使用来更改和更正需要更改或弃用的内容。厌倦了总是改变的东西我已经更新了wordpress以适应从现在起的主题。

我收到了新的警告:

  

jQuery.parseJSON需要有效的JSON字符串

关于那条确切的行:

hooks = jQuery.parseJSON(hooks);

在这部分代码中:

/**
 * SMOF js
 *
 * contains the core functionalities to be used
 * inside SMOF
 */

jQuery.noConflict();

/** Fire up jQuery - let's dance! 
 */
jQuery(document).ready(function($){

        jQuery("select.seo-select").children().removeAttr('selected');
        jQuery("select.seo-select").change(function(){
                $input = jQuery(this).parent().prev();
                $text = jQuery(this).val();
                if($input.val() != ''){
                    $text = ' | '+jQuery(this).val();
                }
                $input.val($input.val()+$text);
                jQuery(this).children().removeAttr('selected');
        });

    //(un)fold options in a checkbox-group
    jQuery('.fld').change(function() {
        var $fold='.f_'+this.id;
        $($fold).slideToggle('normal', "swing");
    });

    //delays until AjaxUpload is finished loading
    //fixes bug in Safari and Mac Chrome
    if (typeof AjaxUpload != 'function') { 
            return ++counter < 6 && window.setTimeout(init, counter * 500);
    }

    //hides warning if js is enabled            
    $('#js-warning').hide();

    //Tabify Options            
    $('.group').hide();

    // Display last current tab 
    if ($.cookie("of_current_opt") === null) {
        $('.theme_options .group:first').fadeIn('fast');    
        $('.theme_options #of-nav li:first').addClass('current');
    } else {

        var hooks = $('#hooks').html();
        hooks = jQuery.parseJSON(hooks);
        if(hooks) {
                    $.each(hooks, function(key, value) {

                            if ($.cookie("of_current_opt") == '#of-option-'+ value) {
                                    $('.theme_options .group#of-option-' + value).fadeIn();
                                    $('.theme_options #of-nav li.' + value).addClass('current');
                            }

                    });
                }

    }

我在其他帖子中没有找到对该问题的回复。除了似乎相关的一个。我试图在https://stackoverflow.com/a/24512828/8844128中建议将其添加到顶部,但它没有改变任何内容:

var json = $.parseJSON(jsonString || "null");

也许这是一个不同的问题。有没有人有解释,甚至可以使用更好的解决方案?

  • 的jquery-migrate.js版本1.4.1 =:45
  • 的jquery.js版本1.12.4 =:2
  • wordpress:4.9.4
  • 网站:My Site

正如评论中所述,当您触发背景图片弹出窗口时,它会在主题的管理选项界面页面中使用。以下是第{159行显示hook的管理员代码:

jQuery.noConflict();
jQuery(document).ready(function($){

    //hide hidden section on page load.
    jQuery('#section-body_bg, #section-body_bg_custom, #section-body_bg_properties').hide();

    //delays until AjaxUpload is finished loading
    //fixes bug in Safari and Mac Chrome
    if (typeof AjaxUpload != 'function') { 
        return ++counter < 6 && window.setTimeout(init, counter * 500);
    }
    //hides warning if js is enabled            
    $('#js-warning').hide();

    //Tabify Options            
    $('.group').hide();

    // Display last current tab 
    if ($.cookie("of_current_opt") === null) {
        $('.group:first').fadeIn(); 
        $('#of-nav li:first').addClass('current');
    } else {

            var hooks = <?php
$hooks = of_get_header_classes_array();
echo json_encode($hooks);
?>;

                $.each(hooks, function(key, value) { 

                    if ($.cookie("of_current_opt") == '#of-option-'+ value) {
                        $('.group#of-option-' + value).fadeIn();
                        $('#of-nav li.' + value).addClass('current');
                    }

                });

            }

然后在第1190行:

$header_class = ereg_replace("[^A-Za-z0-9]", "", strtolower($value['name']));
                    $jquery_click_hook = ereg_replace("[^A-Za-z0-9]", "", strtolower($value['name']));
                    $jquery_click_hook = "of-option-" . $jquery_click_hook;
                    $menu .= '<li class="' . $header_class . '"><a title="' . $value['name'] . '" href="#' . $jquery_click_hook . '">' . $value['name'] . '</a></li>';
                    $output .= '<div class="group" id="' . $jquery_click_hook . '"><h2>' . $value['name'] . '</h2>' . "\n";
                    break;

有没有办法可以将文件内联发送,如果有助于查看所有内容的连接方式?

0 个答案:

没有答案