我正在尝试在后端中将图像设置为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中的完美方式,但我不明白,为什么这段代码不能正常工作?
任何提示?