87,993
社区成员
发帖
与我相关
我的任务
分享
<div id="confirmBadDebt_div" style="display: none;">
<table class="ftable" cellpadding="1" cellspacing="1" width="100%">
<tr>
<td class="flabel">备注信息:</td>
<td class="fcontent"><textarea name="commonts" id="commonts"rows="4"></textarea></td>
</tr>
<tr>
<td class="flabel">结算币种:</td>
<td class="fcontent"><select id="badDebtAccountCurrency" ctype="8060"></select></td>
</tr>
<tr>
<td class="flabel">结算币种金额(单位元):</td>
<td class="fcontent"><input type="text" id="badDebtAccount" /></td>
</tr>
</table>
</div>
<script type="text/javascript">
function confirmBadDebt() {
$('#confirmBadDebt_div').dialog("option", "title", "交易备注信息");
$('#confirmBadDebt_div').dialog("option", "buttons", {
'确定' : function() {
//N行代码
},
'关闭' : function() {
$(this).dialog('close');
}
});
$('#confirmBadDebt_div').dialog('open');
}
</script>