dot slash vs nothing. What is the difference and what#39;s better to use?(点斜线 vs 没有.有什么区别,哪个更好用?)
问题描述
只是出于好奇.
什么是更好的使用方法,它们之间有什么区别?
What is the better method to use and what is the difference between them ?
<link rel=stylesheet href="./css/css.css">
对比
<link rel=stylesheet href="css/css.css">
推荐答案
在相对 URI 中,它们之间没有区别.
In a relative URI, there is no difference between them.
不使用 ./ 将为您节省 2 个字节,因此它稍微更好.
Going without the ./ will save you 2 bytes, so it is marginally better.
在 UNIX 风格的 shell 中,关闭 ./ 将搜索 $PATH 而包括它将搜索当前目录.有些人可能出于使用 shell 的习惯而包含 ./.
In a UNIX style shell, leaving the ./ off will search $PATH while including it will search the current directory. Some people might be including the ./ out of habit from working on the shell.
这篇关于点斜线 vs 没有.有什么区别,哪个更好用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:点斜线 vs 没有.有什么区别,哪个更好用?
基础教程推荐
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何替换eregi() 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
