沃梦达 / 编程问答 / php问题 / 正文

点斜线 vs 没有.有什么区别,哪个更好用?

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 没有.有什么区别,哪个更好用?

基础教程推荐