1. jQuery .on() and .delegate() doesn't work on iPad http://stackoverflow.com/questions/10165141/jquery-on-and-delegate-doesnt-work-on-ipad 2. Click event delegation on the iPhone http://www.quirksmode.org/blog/archives/2010/09/click_event_del.html…
1 前言 C#的相关文档,MSDN上其实已经很详细了,关于delegate的使用可以参 考MSDN上的文档https://msdn.microsoft.com/zh-cn/library/900fyy8e.aspx 2 官方示例 委托类型的声明与方法签名相似, 有一个返回值和任意数目任意类型的参数: public delegate void TestDelegate(string message); public delegate int TestDelegate(MyType m, long…