반응형
jQuery를 사용하여 WordPress에 이미지 로드
WordPress용 템플릿 페이지를 개발 중입니다. 경로가 다음인 버튼을 클릭하면 이미지를 로드해야 합니다.namesite.com/wordpress/test
이미지를 실어야 합니다.
$("<img src='wp-content/themes/twentytwelve/images/loader.gif' class='loader' />").appendTo("#contact");
문제는 이미지가 검색되지 않는다는 것입니다.wordpress/wp-content/themes/twentytwelve/images/loader.gif
그러나.wordpress/test/wp-content/themes/twentytwelve/images/loader.gif
그래서 제가 오류가 있습니다.어떻게 해야 할까?
루트에서 시작하려면 img src에 '/'을(를) 붙입니다.예:
$("<img src='/wordpress/wp-content/themes/twentytwelve/images/loader.gif' class='loader' />").appendTo("#contact");
언급URL : https://stackoverflow.com/questions/13953033/load-an-image-in-wordpress-with-jquery
반응형
'programing' 카테고리의 다른 글
CentOS 6.5에서 PHP 업그레이드 (파이널) (0) | 2023.10.20 |
---|---|
pthread에 대한 start_routine_create return void* 및 void*를 생성하는 이유 (0) | 2023.10.20 |
필수 특성 각도 J의 파일 입력과 함께 작동하지 않습니다. (0) | 2023.10.20 |
mysql의 다른 활동을 기반으로 행 가져오기 (0) | 2023.10.20 |
스트리밍 버퍼를 utf8-string으로 변환 (0) | 2023.10.20 |