123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- $(function () {
- // 切换标签页
- function loginCut() {
- $('.login-label a').on('click', function (e) {
- $(this).addClass('that').siblings().removeClass('that');
- if ($(this).attr('id') === 'user') {
- $('.user-login').css({ 'display': 'block' }).siblings().css({ 'display': 'none' })
- } else if ($(this).attr('id') === 'CA') {
- $('.CA-login').css({ 'display': 'block' }).siblings().css({ 'display': 'none' })
- };
- })
- }
- layui.form.on('submit(userLogin)', function (data) {
- console.log(data.elem) //被执行事件的元素DOM对象,一般为button对象
- console.log(data.form) //被执行提交的form对象,一般在存在form标签时才会返回
- console.log(data.field) //当前容器的全部表单字段,名值对形式:{name: value}
- $.ajax({
- url: 'http://yun.eqbidding.com/web-back/login_back',
- type: 'get',
- dataType: 'json',
- data: data.field,
- success: function (data) {
- console.log(data)
- }
- })
- return false; //阻止表单跳转。如果需要表单跳转,去掉这段即可。
- });
- layui.form.on('submit(CALogin)', function (data) {
- console.log(data.elem) //被执行事件的元素DOM对象,一般为button对象
- console.log(data.form) //被执行提交的form对象,一般在存在form标签时才会返回
- console.log(data.field) //当前容器的全部表单字段,名值对形式:{name: value}
- $.ajax({
- url: 'http://yun.eqbidding.com/web-back//check_login_back_key',
- type: 'get',
- dataType: 'json',
- data: data.field,
- success: function (data) {
- console.log(data)
- }
- })
- return false; //阻止表单跳转。如果需要表单跳转,去掉这段即可。
- });
- (function () {
- loginCut();
- })()
- })
|