请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

有个小问题

文本  加粗

文本  倾斜

文本  加粗倾斜

文本  超级链接

文本 加粗倾斜超级链接

文本  引用

引用内容填写处

加粗

倾斜

超级链接

加粗倾斜

加粗倾斜超级链接

文本  插入代码

<head> 
<meta charset="utf-8"> <meta content="always" name="referrer"> <meta http-equiv="X-UA-Compati
<head>
<head> 
<meta charset="utf-8"> <meta content="always" name="referrer"> <meta http-equiv="X-UA-Compati
<head>

插入图片

https://img1.sycdn.imooc.com//climg/5eb3d83b09810a8a02160216.jpg

添加表情


正在回答 回答被采纳积分+3

17回答

提问者 酒饱饱 2021-10-08 16:30:16

<div align=center><img src="//img1.sycdn.imooc.com//64ec00cf00019c9e05100288.jpg" width="800"></div>

2 回复 有任何疑惑可以回复我~
  • OMGGGG #1
    123136546
    回复 有任何疑惑可以回复我~ 2023-05-11 08:57:58
  • OMGGGG #2
    111111111
    回复 有任何疑惑可以回复我~ 2023-05-11 08:58:24
  • OMGGGG #3
    1111111
    回复 有任何疑惑可以回复我~ 2023-06-28 16:50:25
h5 2021-10-09 12:00:30
<html>
<body>
</html>


1 回复 有任何疑惑可以回复我~
提问者 酒饱饱 2021-10-08 15:28:30

11111

  1. 333333333

  2. 444444444

  3. 555555

  4. 666666666

1 回复 有任何疑惑可以回复我~
慕勒3327621 2024-04-01 11:49:24

<html>

<body>

</html>


0 回复 有任何疑惑可以回复我~
OMGGGG 2023-07-14 11:15:40

.。。。。。。。。。。。

0 回复 有任何疑惑可以回复我~
  • OMGGGG #1
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    回复 有任何疑惑可以回复我~ 2023-09-08 10:09:31
提问者 酒饱饱 2021-10-08 15:34:28
  1. 2222222222222

  2. 333333333333

  3. 4

  4. 44

0 回复 有任何疑惑可以回复我~
提问者 酒饱饱 2021-10-08 15:27:46

dddd

  1. 111111

  2. 222222

  3. 333333

  4. 444444

0 回复 有任何疑惑可以回复我~
提问者 酒饱饱 2021-10-08 15:27:09

11111

  1. 3333333333

  2. 444444444444444

  3. 5555555555555555

0 回复 有任何疑惑可以回复我~
提问者 酒饱饱 2021-10-08 15:22:40
  • 123123

  • 222222

  • 333333

  1. 1111

  2. 2222

  3. 3333

0 回复 有任何疑惑可以回复我~
提问者 酒饱饱 2021-10-08 15:18:26
  1. 1111

  2. 2222

  3. 222

  • 32132213

1232231213

  • 123

  • 32132132

0 回复 有任何疑惑可以回复我~
提问者 酒饱饱 2021-10-08 14:58:13
var gulp = require('gulp'),
    less = require('gulp-less'),
    cssmin = require('gulp-minify-css'),
    //jshint = require('gulp-jshint'),
    path = require('path'),
    uglify = require('gulp-uglify'),
    concat = require('gulp-concat'),
    rename = require('gulp-rename')
    //var basePath =  '/data/devhome/' + path.basename(path.dirname(process.cwd())) + '/aopeng_dev/php/webroot/static/moco/v1.0';
    var basePath = 'v1.0'
    gulp.task('less', function(){     
        console.log(basePath+'/less/moco.less')

        gulp.src(basePath+'/less/moco.less')
            .pipe(less({ compress: true }))
            //.pipe(minifyCss())
            .pipe(rename({ suffix: '.min' }))
            .pipe(gulp.dest(basePath+'/dist/css'));
    });


    gulp.task('fonts', function(){     
        gulp.src(basePath+'/fonts/*')
            .pipe(gulp.dest(basePath+'/dist/fonts'));
    });
    gulp.task('imv2', function(){     
        gulp.src(basePath+'/imv2/fonts/*')
            .pipe(gulp.dest(basePath+'/dist/imv2fonts'));
    });
    gulp.task('icomoon', function(){     
        gulp.src(basePath+'/icomoon/fonts/*')
            .pipe(gulp.dest(basePath+'/dist/icomoon'));
    });

    gulp.task('images', function(){     
        gulp.src(basePath+'/images/*')
            .pipe(gulp.dest(basePath+'/dist/images'));
    });
    // gulp.task('hint', function() {
    //     gulp.src(version+'/js/*.js')
    //         .pipe(jshint())
    //         .pipe(jshint.reporter('default'));
    // });

    gulp.task('js', function() {
        console.log(basePath+'/js/*.js')
        gulp.src(basePath+'/js/*.js')
            .pipe(concat('moco.min.js'))
            .pipe(uglify())
            .pipe(gulp.dest(basePath+'/dist/js'))
    });
 
     gulp.task('captcha', function() {
        gulp.src('captcha/v0.1/src/*.js')
            .pipe(rename({ suffix: '.min' }))
            .pipe(uglify())
            .pipe(gulp.dest('captcha/v0.1/dist'))
        gulp.src('captcha/v0.1/src/*.css')
            .pipe(cssmin())
            .pipe(rename({ suffix: '.min' }))
            .pipe(gulp.dest('captcha/v0.1/dist'));
    });

gulp.task('default', ['less','fonts','imv2','icomoon','js','images']);


0 回复 有任何疑惑可以回复我~
提问者 酒饱饱 2021-10-08 14:57:45
= ()= ()= ()= ()= ()= ()= ()
    basePath = .((){     
        .(basePath+)

        .(basePath+)
            .(({ : }))
            .(({ : }))
            .(.(basePath+))}).((){     
        .(basePath+)
            .(.(basePath+))}).((){     
        .(basePath+)
            .(.(basePath+))}).((){     
        .(basePath+)
            .(.(basePath+))}).((){     
        .(basePath+)
            .(.(basePath+))}).(() {
        .(basePath+)
        .(basePath+)
            .(())
            .(())
            .(.(basePath+))
    }).(() {
        .()
            .(({ : }))
            .(())
            .(.())
        .()
            .(())
            .(({ : }))
            .(.())}).([])


0 回复 有任何疑惑可以回复我~
提问者 酒饱饱 2021-10-08 14:57:09
= ()= ()= ()= ()= ()= ()= ()
    basePath = .((){     
        .(basePath+)

        .(basePath+)
            .(({ : }))
            .(({ : }))
            .(.(basePath+))}).((){     
        .(basePath+)
            .(.(basePath+))}).((){     
        .(basePath+)
            .(.(basePath+))}).((){     
        .(basePath+)
            .(.(basePath+))}).((){     
        .(basePath+)
            .(.(basePath+))}).(() {
        .(basePath+)
        .(basePath+)
            .(())
            .(())
            .(.(basePath+))
    }).(() {
        .()
            .(({ : }))
            .(())
            .(.())
        .()
            .(())
            .(({ : }))
            .(.())}).([])


0 回复 有任何疑惑可以回复我~
提问者 酒饱饱 2021-10-08 14:55:00
  • 123

  • 33333

  • 4234234234234

  1. dasddsa

  2. dsasad

  3. dsa

  4. dsa


0 回复 有任何疑惑可以回复我~
OMGGGG 2021-10-08 14:47:56

对于这种问题,你不要直接把代码贴出来,让我从头到尾的解释。这并不是一个好的学习方式,因为我没有看到你思考的过程,没法对症下药。

你可以在代码中写上注释,例如:“感觉这一行应该打印 1 ,因为 xxx ,但是它却打印了 2”—— 写出你的理解和思考过程。

这种方式看似麻烦,实则是一条捷径,你会记忆更加深刻的。相信我。


另外,你需要注意两点

  • 把代码格式化一些,这样直接贴上,看的人眼晕。多少考虑下阅读人的体验。

  • 说明你 React 的版本

.。。。。。。。。。。。


0 回复 有任何疑惑可以回复我~
  • OMGGGG #1
    .。。。。。。。。。。。
    回复 有任何疑惑可以回复我~ 2023-07-14 11:18:44
提问者 酒饱饱 2021-07-02 11:53:50

文本  加粗

文本  倾斜

文本  加粗倾斜

文本  超级链接

文本 加粗倾斜超级链接

文本  引用

引用内容填写处

加粗

倾斜

超级链接

加粗倾斜

加粗倾斜超级链接

文本  插入代码

<head> 
<meta charset="utf-8"> <meta content="always" name="referrer"> <meta http-equiv="X-UA-Compati
<head>

插入图片

//img1.sycdn.imooc.com//climg/5eb3d83b09810a8a02160216.jpg

添加表情


0 回复 有任何疑惑可以回复我~
7七月 2019-02-18 17:47:35

???????

0 回复 有任何疑惑可以回复我~

相似问题

登录后可查看更多问答,登录/注册

问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信