2020-08-22 html的a标签防止跳转 + css的高级特性 + JS的判断字符串结尾的字母 + 软技能的功能上线后的报告发布

2020-08-22 题目来源:http://www.h-camel.com/index.html

[html] 在a标签中,怎样防止链接跳转?

一般使用a标签来做按钮时,不需要跳转时,href的值为空。

如果不需要跳转,需要设置href的值: <a href="javascript:void(0);">链接</a>

[css] 你觉得css高级的特性有哪些?

transform: translate();

box-shadow

animation

text-shadow 参考: https://www.cnblogs.com/xuying/p/4658215.html

background: radial-gradient(center,ellipse cover,#ffffff 72%,#dddddd 100%);

[js] 给定特定的字符串,写个方法判断是否以元字母结尾

利用正则表达式:

function endsWithVowel(str) {
    return /[a,e,i,o,u]$/i.test(str);
}

[软技能] 功能上线后,发布报告要怎么写?你有写过吗?或者你有看过吗?

1.提交测试

2.预热发布

3.正式上线

4.应用服务监控

5.总结报告

详细的上线部署流程 https://blog.csdn.net/qq_39581763/article/details/105855538

猜你喜欢

转载自blog.csdn.net/vampire10086/article/details/108526611
今日推荐