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.
我基本上想得到最终呈现的网页标题来执行访问统计。我们这里提到的网页标题是页面头部的<title>的值。
有没有办法,一种优雅的方式来实现这一目标?
谢谢你的帮助。
我想您可以使用 javascript 将标题发布到您的统计处理程序
$(function(){ $.post("/Statistics/Log", {title = document.title}); })
并包括您要记录的任何其他内容