尝试创建一个下拉菜单,但它不适用于JavaScript

时间:2016-01-30 01:04:34

标签: javascript jquery html css

  

这就是在

时出现的样子

enter image description here

  

这是期望当点击我用来显示这是:hover事件,但我希望它可点击   enter image description here

如果可以修复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;
&#13;
&#13;

  

基本上我想要的是让它打开内容以显示iframe并允许他们使用设置

1 个答案:

答案 0 :(得分:2)

button.onclick = fucntion(); {

你错误拼写了单词function