使用Jquery变量更改img src会导致“unknown”作为src结果

时间:2017-10-29 20:47:54

标签: javascript php jquery wordpress variables

我正在尝试在后端中将图像设置为highlight-img时动态更改omg src。

这是我的html输出: /#/

我正在用这个jquery-snippet更改img src:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

RewriteCond %{REQUEST_URI} !^/account.*$
RewriteRule ^(.*) /account/index.html [NC,L]

RewriteRule ^(.*) /index.html [NC,L]

我的开发控制台中脚本的输出是正确的:

<img width="560" height="746" src=(unknown) class="attachment-shop_catalog size-shop_catalog wp-post-image" alt="704-4_vorne" title="704-4_vorne" srcset="" sizes="(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px">

因此,正如您所看到的那样,通过正确解析变量,但未在目标元素中正确设置。 我知道这不是将php变量集成到jquery中的完美方式,但我不明白,为什么这段代码不能正常工作?

任何提示?

0 个答案:

没有答案