2016-08-22 14 views
0

私はドロップダウンリストを持っています。オプションを選択するとカレンダーを表示したい。ドロップダウンスイッチは正常に機能しますが、Webサイトの初回読み込み時にカレンダーがロードされます。その後、必要に応じてドロップダウンリストが機能します。私が間違いをしている場所を教えてください。ドロップダウンでjavascriptを呼び出す方法

<form class="form-horizontal form-label-left top_margin"> 
         <div class="form-group"> 
        <label class="control-label col-md-3 col-sm-3 col-xs-12">Select The Class/Batch</label> 
        <div class="col-md-6 col-sm-6 col-xs-12"> 
         <select class="form-control" id="division" onchange="calendar"> 
         <option>Select One</option> 
         <option value="1">Standard 1 Divison A</option> 
         <option value="2">Standard 1 Divison B</option> 
         <option value="3">Standard 1 Divison C</option> 
         <option value="4">Standard 1 Divison D</option> 
         </select> 
        </div> 
        </div> 
        <br> 
        <br> 
        <br> 
        </form> 
        <div id="caldisplay"> 
         <div id='calendar'></div> 
        </div> 

私のJavaScript:

<script> 
    $('#division').on('change',function(){ 
var selection = $(this).val(); 
switch(selection){ 
case "1": 
$("#caldisplay").show() 
break; 
default: 
$("#caldisplay").hide() 
} 
}); 
</script> 






    $(function() { // document ready 

    $('#calendar').fullCalendar({ 
     now: '2016-05-07', 
     editable: true, 
     aspectRatio: 1.8, 
     scrollTime: '00:00', 
     header: { 
      left: 'prev,next', 
      center: 'title', 
      right: 'timelineMonth,timelineYear' 
     }, 
     defaultView: 'timelineMonth', 
     resourceAreaWidth: '25%', 
     resourceLabelText: 'Students', 
     resources: [ 
      { id: 'a', title: 'John Doe A' }, 
      { id: 'b', title: 'John Doe B' }, 
      { id: 'c', title: 'John Doe C' }, 
      { id: 'e', title: 'John Doe E' }, 
      { id: 'f', title: 'John Doe F' }, 
      { id: 'g', title: 'John Doe G' }, 
      { id: 'h', title: 'John Doe H' }, 
      { id: 'i', title: 'John Doe I' }, 
      { id: 'j', title: 'John Doe J' }, 
      { id: 'k', title: 'John Doe K' }, 
      { id: 'l', title: 'John Doe L' }, 
      { id: 'm', title: 'John Doe M' }, 
      { id: 'n', title: 'John Doe N' }, 
      { id: 'o', title: 'John Doe O' }, 
      { id: 'p', title: 'John Doe P' }, 
      { id: 'q', title: 'John Doe Q' }, 
      { id: 'r', title: 'John Doe R' }, 
      { id: 's', title: 'John Doe S' }, 
      { id: 't', title: 'John Doe T' }, 
      { id: 'u', title: 'John Doe U' }, 
      { id: 'v', title: 'John Doe V' }, 
      { id: 'w', title: 'John Doe W' }, 
      { id: 'x', title: 'John Doe X' }, 
      { id: 'y', title: 'John Doe Y' }, 
      { id: 'z', title: 'John Doe Z' } 
     ], 
     events: [ 
      { id: '1', resourceId: 'b', start: '2016-05-07', end: '2016-05-07', title: 'X' }, 
      { id: '1', resourceId: 'b', start: '2016-05-06', end: '2016-05-06', title: 'X' }, 
      { id: '2', resourceId: 'c', start: '2016-05-07', end: '2016-05-07', title: 'O' }, 
      { id: '3', resourceId: 'd', start: '2016-05-06', end: '2016-05-06', title: 'O' }, 
      { id: '4', resourceId: 'e', start: '2016-05-07', end: '2016-05-07', title: 'X' }, 
      { id: '5', resourceId: 'f', start: '2016-05-07', end: '2016-05-07', title: 'X' } 
     ] 
    }); 

}); 

</script> 
+0

チェック。そうであれば、その後に他の開始スクリプトタグを導入することを検討してください。 – dlopez

+0

これは 'onchange = "calendar"にあると思われますか?そうでない場合は、エラーを引き起こすかもしれないので削除してください。 – krisph

+0

$( '#calendar')fullCalendar({...})。hide() – Dimitri

答えて

1

あなたはuがCSSまたはuがするときの選択、それを表示したい場合は、それを隠すことができ、デフォルトでは、ただ一つの単純な機能のためのスイッチを使用する必要はありません

:uは何をする必要があるか

すべてがこのように関数を呼び出す..ですuは/ELSE IF文を使用することができ、異なっています変更呼び出しで

:JSで

<select class="form-control" id="division" onchange="calendar()"> 

機能:最初のスクリプトは、終了タグが本当に必要かどう

function calendar() { 
     $calendar = $('#calendar'); 
     $calendar.show(); 

     $calendar.fullCalendar({ 
      now: '2016-05-07', 
      editable: true, 
      aspectRatio: 1.8, 
      scrollTime: '00:00', 
      header: { 
       left: 'prev,next', 
       center: 'title', 
       right: 'timelineMonth,timelineYear' 
      }, 
      defaultView: 'timelineMonth', 
      resourceAreaWidth: '25%', 
      resourceLabelText: 'Students', 
      resources: [ 
       { id: 'a', title: 'John Doe A' }, 
       { id: 'b', title: 'John Doe B' }, 
       { id: 'c', title: 'John Doe C' }, 
       { id: 'e', title: 'John Doe E' }, 
       { id: 'f', title: 'John Doe F' }, 
       { id: 'g', title: 'John Doe G' }, 
       { id: 'h', title: 'John Doe H' }, 
       { id: 'i', title: 'John Doe I' }, 
       { id: 'j', title: 'John Doe J' }, 
       { id: 'k', title: 'John Doe K' }, 
       { id: 'l', title: 'John Doe L' }, 
       { id: 'm', title: 'John Doe M' }, 
       { id: 'n', title: 'John Doe N' }, 
       { id: 'o', title: 'John Doe O' }, 
       { id: 'p', title: 'John Doe P' }, 
       { id: 'q', title: 'John Doe Q' }, 
       { id: 'r', title: 'John Doe R' }, 
       { id: 's', title: 'John Doe S' }, 
       { id: 't', title: 'John Doe T' }, 
       { id: 'u', title: 'John Doe U' }, 
       { id: 'v', title: 'John Doe V' }, 
       { id: 'w', title: 'John Doe W' }, 
       { id: 'x', title: 'John Doe X' }, 
       { id: 'y', title: 'John Doe Y' }, 
       { id: 'z', title: 'John Doe Z' } 
      ], 
      events: [ 
       { id: '1', resourceId: 'b', start: '2016-05-07', end: '2016-05-07', title: 'X' }, 
       { id: '1', resourceId: 'b', start: '2016-05-06', end: '2016-05-06', title: 'X' }, 
       { id: '2', resourceId: 'c', start: '2016-05-07', end: '2016-05-07', title: 'O' }, 
       { id: '3', resourceId: 'd', start: '2016-05-06', end: '2016-05-06', title: 'O' }, 
       { id: '4', resourceId: 'e', start: '2016-05-07', end: '2016-05-07', title: 'X' }, 
       { id: '5', resourceId: 'f', start: '2016-05-07', end: '2016-05-07', title: 'X' } 
      ] 
     }); 
    } 
+0

それは働いた。どうもありがとう。同じ機能をタブにロードする方法。タブをクリックすると、同じ機能が表示されますか? – Shehzi

+0

歓迎です、どういう意味ですか? – liborza

+0

私は通常のタブパネルを意味します。 – Shehzi

関連する問題