0
我有一個問題我使用jQuery的stradus播放器播放從我的網站的SoundCloud內容有不同的參數,其中之一是鏈接stradus jQuery插件參數鏈接
<script type="text/javascript">
$(document).ready(function(){
$stratus({
auto_play: true,
download: false,
links: 'http://soundcloud.com/qotsa',
random: true
});
});
,但我wan't獲得soundoudlinks從我的數據庫與PHP和加載他們的鏈接我試了一切,但我總是得到一個語法感謝錯誤,任何人一個想法如何使字符串與PHP?
<script type="text/javascript">
$(document).ready(function(){
$.stratus({
links: <?php echo(implode("','", $soundcloudsurl)); ?>
});
});
</script>
這是我的代碼!
顯示打印插件鏈接的代碼。 –
我將我的代碼添加到帖子中 – user1994529