这就是在
时出现的样子
如果可以修复Javascript编码,请尽快提供帮助
$.get('https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=50&playlistId=UUbRrCTEldKci2yWosUukSQQ&key=APIKEY');
.success(function(data){
data.forEach(function(vid){
$.post('myPhpPostInserter.php', vid);
});
});

<?php
$myPost['title'] = $_POST['vid_title'];
//some more mapping on the $myPost array...
wp_insert_post($myPost);
&#13;
var content = document.getElementById("settingsBar");
var button = document.getElementById("show-more");
button.onclick = function() {
if (content.className == "drop") {
content.className = "";
} else {
content.className = "drop";
}
};
&#13;
基本上我想要的是让它打开内容以显示iframe并允许他们使用设置
答案 0 :(得分:2)
button.onclick = fucntion(); {
你错误拼写了单词function