我有位於形式folloing文本框:轉移阿賈克斯數據隱藏文本框在MVC
<input type="text" id="duration" name="duration" readonly="readonly" style="width:0px"/>
<input type="text" id="renew" name="renew" readonly="readonly" style="width:0px"/>
<input type="text" id="accountAfter" name="accountAfter" readonly="readonly" style="width:0px"/>
在成形後的這些文本框將數據傳遞到從下面的對話框中檢索到的控制器:
$('#fixed').dialog({
autoOpen: false,
width:600,
resizable: false,
title: 'Fixed Account Details',
modal: true,
buttons: {
"Close": function() {
$(this).dialog("close");
},
"OK": function() {
$('#duration').val($('#duration').val());
$('#renew').val($('#renew').is(':checked'));
$('#accountAfter').val($('#accountAfter').val());
$(this).dialog("close");
}
}
});
是否可以在傳遞數據的同時隱藏用戶的這些文本框?
標籤不會以郵政形式發回。只有領域做。 –