1.dynamicaddremover.js
/**
* dynamicaddremover.js
* @author: zhongy
* @version: 0.0.3
*/ $.fn.dynamicaddremover = function(options),
$.fn.dynamicaddremover.defaults,
options);
//define the add click event
var addclickevent = function(event)
$(this).hide(); //hide the expand button which fire the event.
//execute the custom event after adding,
if(options.addedevent != null)
}; //define the remove click event
var removeclickevent = function(event)
//execute the custom event before removing.
if(options.removingevent != null)
//execute the custom event after removing.
if(options.removedevent != null)
}; //initialize the dynamicaddremover ui and attach the event.
var imghtml = "" +""
$(this).find("img[id$='" + options.removerid + "']").hide();
}; $.fn.dynamicaddremover.defaults = ;
2.測試1 html 檔案
<?xml version="1.0" encoding="iso-8859-1"?>
volvo
saab
opel
audi
button
3.測試2 html檔案
<?xml version="1.0" encoding="iso-8859-1"?>
volvo
saab
opel
audi
button
WPF 動態新增和刪除控制項
專案的需求,是要在後台對空間進行增加和刪除,對與習慣winform開發,wpf中卻有很多的不同。ps 你往窗體新增控制項的時候必須要註冊這個控制項,其他地方才可以根據名稱找的到!private void button add click object sender,system.windows.ro...
C 實現動態新增和刪除控制項
最近弄乙個專案,需要動態新增控制項和刪除控制項.原始介面如下 如上圖操作新增按鈕,則下面自動增加一行groupbox控制項,操作刪除則自動刪除最後一行開始的broupbox控制項.實現步驟如下 1 定義乙個記錄行數的全域性變數 public int watch num 0 2 編寫動態新增的 pri...
select,table控制項的新增和刪除
以struts2的標籤為例 1.select控制項的新增和刪除 選擇 新增乙個option function addoption1 function addoption2 刪除option function deleteoption1 function deleteoption2 function ...