我使用avada主题,版本3.6.1。和运行WP4.5.5。
一些日历没有显示在网站上,错误是:语法错误,无法识别的表达式:a[href*=#]:not([href
我换了main.js [href*=#] into [href*="#"]
现在我明白了:
Uncaught :jQuery(.).placeholder不是HTMLDocument的函数。(4b8c4.js:1792) I (26ef1.js:5) at Object.fireWith as resolveWith at Function.ready (26ef1.js:5) at HTMLDocument.K (26ef1.js:5)
发布于 2017-01-20 10:15:41
如果要更新placeholder属性,则需要使用attr方法。
$('[href*="#"]').attr('placeholder', 'hoge');https://stackoverflow.com/questions/41761013
复制相似问题