videoId 안에 wr_link1 이 들어가게
본문
문법을 모르겠어서 문의 드립니다. 원래 저자리에
videoId:'OMRZevAb_jU', 들어가야 하는데 <?php echo $list[$i]['wr_link1'] ?> 넣고 싶어요
<script>
var player;
function onYouTubeIframeAPIReady(){
player = new YT.Player('player',{
width:'100%',
videoId:'<?php echo $list[$i]['wr_link1'] ?>',
playerVars:{'autoplay':1,'playsinline':1},
events:{ 'onReady':onPlayerReady }
});
}
function onPlayerReady(e){
e.target.mute();
e.target.playVideo();
}
</script>
답변 2
<script>
var player;
function onYouTubeIframeAPIReady( vid){
player = new YT.Player('player',{
width:'100%',
videoId:vid,
playerVars:{'autoplay':1,'playsinline':1},
events:{ 'onReady':onPlayerReady }
});
}
function onPlayerReady(e){
e.target.mute();
e.target.playVideo();
}
</script>
추측에 onYouTubeIframeAPIReady()이 함수가
$list loop 안에 있을 듯하니
호출하는 부분에서
onYouTubeIframeAPIReady( '<?php echo $list[$i]['wr_link1'] ?>')
하는 방식으로 해야 될 겁니다.
감사합니다.