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.
从我的 ascx 文件的 HTML 部分,如何调用 JavaScript 函数?
<div> <% if(foo(...)) %> // callJavaScriptFunction() ...
你不能,代码只在浏览器中运行一次,所以没有办法得到答案。
你需要从不同的方向来解决问题。
要么将 JavaScript 代码移动到服务器端代码中,要么将所需的信息以表单的形式发回,以便在需要时将其放在服务器端,或者使用 Web 服务从 JavaScript 代码运行服务器端代码。
你想解决什么问题?