使用ajax調用含JQuery easyUI的組件需要重繪

來源:互聯網
上載者:User

使用JqueryEasyUI的時候,我們從後台傳過來easyui的元素無法正常顯示。

在開發的時候我們會遇到這樣一個問題。
//點擊頁面 添加事件
//得到選課組的資訊

 

 
  1. function getClozeGroupInfo() {  
  2.         var clozegroup_id = $('#clozegroup').val();  
  3.         $.post('/index.php/ajax/getClozeExperiment',{id: clozegroup_id},function(data){  
  4.             $('#experimentList').html(data);  
  5.              
  6.         });  
  7.          
  8.     }  

我們會使用$.post來擷取我們需要的內容。
但是如果我擷取的頁面中存在Jquery easyUI的東西,那麼擷取過來的元素是無法被解析的。
比如

 
  1. <input id="room2" url="/index.php/ajax/getRoomList" valueField="id" textField="name" class="easyui-combobox" multiple="true" name="room" style="width:100px" required="true"> 


在擷取到的這個input裡面,有class="easyui-combobox"。
那麼直接擷取過來是無法使用的。

這種情況下,我們需要對擷取過來的html元素進行重繪。

  
  1. function getClozeGroupInfo() {  
  2.         var clozegroup_id = $('#clozegroup').val();  
  3.         $.post('/index.php/ajax/getClozeExperiment',{id: clozegroup_id},function(data){  
  4.             $('#experimentList').html(data);  
  5.             $.parser.parse($('#experimentList'));  
  6.         });  
  7.          
  8.     } 

 

這樣,頁面中的jquery元素就能夠正常了。

本文出自 “難道是神仙” 部落格,請務必保留此出處http://leexiaobo.blog.51cto.com/2851883/928726

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.