最新下載
夢幻水族館
少女前線
星之翼
小花仙精靈樂園
餐廳萌物語
山河旅探
戀與製作人
最強腦3
異塵:達米拉
少年西遊記2
24小時閱讀排行榜
- 1 如何將 Spring 依賴注入整合到我的 JavaFX 應用程式中?
- 2 dgprpsetup.exe - 什麼是 dgprpsetup.exe?
- 3 您可能不知道的 useState 效能技巧
- 4 dl70are.dll - 什麼是 dl70are.dll?
- 5 MySQL 中的 Tinyint(2) 與 Tinyint(1):顯示寬度有何不同?
- 6 如何將 CSS 檔案匯入到 LESS 檔案中?
- 7 如何在 Go 中有效地初始化數組而不使用循環?
- 8 如何根據條件替換 DataFrame 列中的值?
- 9 Go 中的嵌入式欄位何時使用指標與值參考?
- 10 如何根據嵌套值數組過濾物件數組?
- 11 dkres32.dll - 什麼是 dkres32.dll?
- 12 std::shared_ptr 如何確保清理期間正確的析構函式呼叫?
- 13 如何使用共享鍵合併數組中的 JavaScript 物件?
- 14 dismcore.dll - 什麼是 dismcore.dll?
- 15 何時在 MySQL 中使用tinyint、smallint、mediumint、bigint 和 int?
最新教學
-
- 國外Web開發全端課程全集
- 1651 2024-04-24
-
- Go語言實戰之 GraphQL
- 1927 2024-04-19
-
- 550W粉絲大佬手把手從零學JavaScript
- 3344 2024-04-18
-
- python大神Mosh,零基礎小白6小時完全入門
- 2878 2024-04-10
-
- MySQL 初學入門(mosh老師)
- 1752 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--十天精品課堂
- 2564 2024-03-29
基於amazeui用戶充值頁面特效是一款可以選擇支付寶或微信的付款方式來進行儲值。
// 將所有.ui- choose實例化
$('.ui-choose').ui_choose();
// uc_01 ul 單選
var uc_01 = $('#uc_01').data('ui-choose'); // 取回已實例化的物件
uc_01.click = function(index, item) {
console.log('click', index, item.text())
}
uc_01.change = function(index, item) {
console.log('change', index, item.text())
}
$(function() {
$('#uc_01 li:eq(3)').click(function() {
$('.tr_rechoth').show();
$('.tr_rechoth').find("input").attr('required', 'true')
$('.rechnum').text('10.00元');
})
$('#uc_01 li:eq(0)').click(function() {
$('.tr_rechoth').hide();
$('.rechnum').text('10.00元');
$('.othbox').val('');
})
$('#uc_01 li:eq(1)').click(function() {
$('.tr_rechoth').hide();
$('.rechnum').text('20.00元');
$('.othbox').val('');
})
$('#uc_01 li:eq(2)').click(function() {
$('.tr_rechoth').hide();
$('.rechnum').text('50.00元');
$('.othbox').val('');
})
$(document).ready(function() {
$('.othbox').on('input propertychange', function() {
var num = $(this).val();
$('.rechnum').html(num + ".00元");
});
});
})