我是一名白手起家的编码初学者。自 2012 年以来,我有一个在wordpress中运行良好的复杂主题。从那时起,有些东西就不再起作用了。尽管我经常使用jqmigrate来更改和纠正需要更改或已弃用的内容。厌倦了不断变化的东西,我已经更新了 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?ver=1.4.1:45
- jquery.js?ver=1.12.4:2
- WordPress:4.9.4
- 网站:我的网站
正如评论中所问的,当您触发背景图像弹出窗口时,它会在主题的管理选项界面页面中使用。这是hook
出现在第 159 行的管理代码:
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;
如果有助于查看所有内容如何连接,有没有办法可以内联发送php文件?