2015-03-13 38 views
0

以下是我的代碼。JQuery UI對話框彈出 - 添加一個關於div的包裝

_createWrapper: function() { 
     this.uiDialog = $("<div>") 
     .addClass("popup_overlay" + this.options.dialogClass) 
     this.uiDialog = $("<div>") 
      .addClass("ui-dialog ui-widget ui-widget-content ui-corner-all ui-front " + 
       this.options.dialogClass) 
      .hide() 
      .attr({ 
       // Setting tabIndex makes the div focusable 
       tabIndex: -1, 
       role: "dialog" 
      }) 
      .appendTo(this._appendTo()); 

我從側面添加了這個代碼:

this.uiDialog = $("<div>") 
.addClass("popup_overlay" + this.options.dialogClass) 

我如何添加這個div以上包裝的div?

this.uiDialog = $("<div>") 
       .addClass("ui-dialog ui-widget ui-widget-content ui-corner-all ui-front " 

回答

0

使用下面的代碼片段在你的代碼,它會做休息

.wrap("<div class='new'></div>"); 

this.uiDialog = $("<div>").addClass("ui-dialog ui-widget ui-widget-content ui-corner-all ui-front")..wrap("<div class='new'></div>"); 
+0

沒有兄弟,我想新的div上面這個div> UI的對話框用戶界面 - widget ui-widget-content ui-corner-all ui-front ui-draggable ui-resizable – shakil 2015-03-13 06:54:48

+0

@shakil如果你不介意,你可以創建一個小提琴並分享它嗎? – 2015-03-13 06:56:16

+0

與此同時我更新了代碼,請檢查它嗎? – 2015-03-13 07:09:59