Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网站,它使用基本的 href 标签。但我只想使用一个元素与绝对路径。是否可以为它破例?可能有什么技巧吗?因为由于某些原因我无法删除标签,但我必须使用一个元素,我无法将其上传到服务器。
您只需使用完整路径:
<!DOCTYPE html> <html> <head> <base href="http://stackoverflow.com/" target="_blank"> </head> <body> <a href="questions">Questions</a> <a href="http://google.com">Google</a> </body> </html>