0

在我的 asp.net/c# 解决方案中,我正在用这个加载 jquery 库

<SharePoint:ScriptLink ID="jquery_js" name="/_layouts/PDF Library/jquery-1.10.1.min.js" runat="server" OnDemand="False" Localizable="False" />

现在,在 c# 代码中,我如何插入 javascript,它只会在 jquery 库完成加载并且 dom 也完成加载时运行。我可以像这样插入javascript:

ScriptManager.RegisterStartupScript(someControl, typeof(string), "AutoComplete", js_call, true);

谢谢。

4

1 回答 1

1
$(window).load(function(){
   //this will run after dom is loaded
});
于 2013-06-21T20:08:21.913 回答