2013-05-01 73 views
3

如何使用javascript或jquery獲取特定的已刪除標籤。我選擇了從選擇元素,並使用和array_diff我正在分隔條件在服務器端的標籤,我只是想刪除的標籤直接在這裏是我的代碼Jquery Select2標籤

<script> 
      $(document).ready(function(){ 
       $("#e23").select2({ 
        tags:[], 
        dropdownCss: {display: 'none'}, 
        tokenSeparators: [" "], 
        maximumInputLength: 10 
        }); 
      var x =$("#e23").val(); 
      $("#e23").on("change", function() {var as=($("#e23").val()); 
      $.ajax({ 
       url: "http://localhost/healthkatta/index.php?r=jdashboard/Demo/create",//this is the request page of ajax 
       data: { 
        //special:specialisation, 
        name1 :x, 
        name2 :as, 
       },//data for throwing the expected url 
       type:"GET",//you can also use GET method 
       dataType:"html",//you can also specify for the result for json or xml 
       success:function(response){ 
         $('.log').html(response); 
       }, 
       error:function(){ 
        //TODO: Display in the poll tr ifself on error 
        alert("Failed request data from ajax page"); 
       } 
      });}); 
       }); 
     </script> 

    <body> 


    <strong>Default Keywords</strong> 
    <br> 
    <br> 
    <div class="log"></div> 
    <input id="e23" class="select2-offscreen" type="hidden" value="<?php for($i=0;$i<count($result);$i++){ 
     if ($i == count($result)-1) 
      echo $result[$i]->keyword->keyword;  
     else 
      echo $result[$i]->keyword->keyword.','; 
    }?>"style="width:500px" tabindex="-1"> 
    <div id="dialog-form" title="Add Custom Keywords"> 
    <form> 
     <fieldset> 
     <label for="name">Keyword</label> 
     <input type="hidden" name="name" id="name" class="text ui-widget-content ui-corner-all" /> 
    </fieldset> 
    </form> 
    </div> 
    <br> 
    <br> 
    <button id="create-user">Add More</button> 

    </body> 

回答

3

嘗試這樣的事情

.on("change", function(e) { 
    if(typeof e.added != 'undefined'){ 
     // ID OF ADDED ELEMENT 
     var added_id = e.added.id; 
    }else if(typeof e.removed != 'undefined'){ 
     // ID OF REMOVED ELEMENT 
     var removed_id = e.removed.id; 
    } 
}); 
+0

謝謝@rajesh kakawat的回覆生病嘗試 – Ninad 2013-05-01 12:15:28

+0

謝謝@rajesh kakawat代碼工作 – Ninad 2013-05-01 12:21:15