使用asp.net方法ClientScriptManager.RegisterStartupScript包含jQuery脚本是否安全?

http://msdn.microsoft.com/en-us/library/z9h4dk8y.aspx

作为页面内的示例:

this.ClientScript.RegisterStartupScript(typeof(string), "script1", "$('#test').hide();", true);


这会引起任何问题吗?

谢谢

最佳答案

是的,这是安全的,因为脚本已添加到页面的末尾,因此您可以假定您可以操纵DOM,因为它已经加载了,并且您不需要将调用包装在$(document).ready中。

09-26 07:51