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.
如何使用 javascript 获取 aspx 文件的 Code File 属性上的字符串?我正在尝试alert(document.codefile);,但它只是返回undefined。
alert(document.codefile);
undefined
如果您有窗口的位置,则可以使用按惯例的方法。无法以上面显示的方式获取它,因为 javascript 对服务器一无所知。
var loc = window.location + '.aspx'; //or .ascx depending
我不知道这对你有什么价值,因为它对 asp.net 有用,但对 JS 没有用。