我在使用WP插件时遇到问题。用户无法上传头像或背景,也无法从个人资料部分查看他们的个人资料。按下按钮以执行与配置文件相关的操作后,它们将重定向到主页。这里有一些代码(接收错误的函数)和控制台日志错误错误的图片。
某些控制台日志错误是因为没有图片。我故意删除了个人资料和背景照片。无论是否有图像都会出现此问题。
/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */
!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0)
function(a){if(!a.document){throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,
function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=
function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:
我执行了以下疑难解答任务:
This is the Console log error for users attempting to change their background or avatar
The 2nd picture is of the console log error when an individual tries to view their profile
答案 0 :(得分:2)
GridFs
不是有效的CSS选择器。
在属性选择器([href=#]
语法)中,值必须用引号括起来,除非该值是有效的CSS标识符:以字母开头,仅包含字母,数字,连字符和下划线(在此case,引号是可选的)
由于[name=value]
明显无法使用"有效的CSS标识符",因此必须引用它。
#
可以正常使用。