dot slash vs nothing. What is the difference and what#39;s better to use?(点斜线 vs 没有.有什么区别,哪个更好用?)
本文介绍了点斜线 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 - if 语句中的倒序 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01