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.
在我的应用程序中,我动态创建了一个导航菜单。当我单击引用各种内容页面的锚标签时,我想捕获锚标签的文本并将其显示在内容页面的 div 中。
我怎么可能做到这一点?
可以通过HttpHandlers来完成吗?还是我需要研究其他东西???请帮忙。
假设您希望每个内容页面的 div 看起来不同或位于不同的位置,并且您希望在该 div 中显示的只是页面 URL,您可以使用可以添加到母版页中的简单脚本来解决此问题:
document.onload = function() { var titleDiv = document.getElementById("titleDiv"); titleDiv.innerText = window.url; }
唯一的限制是您的 div 在所有内容页面中必须具有相同的 id。