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.
我在我的应用程序中使用 WebBrowser。我想在单击超链接后运行查询。此查询确定显示哪个页面。有谁能够帮我?
您可以使用 jquery 脚本:
<a id="link" href="..."></a> <script> $('.link').onClick(function() { }); </script>
在函数中,您可以运行 ajax 来进行查询。