最新下载
梦幻水族馆
少女前线
星之翼
小花仙精灵乐园
餐厅萌物语
山河旅探
恋与制作人
最强大脑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元");
});
});
})