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.
我调用了 $.ajaxSetup() 来设置一些参数。
后来我想得到一个特定设置的值(比如超时)。
有可能得到吗?
是的,您可以执行以下操作
$.ajaxSetup()['timeout']
AjaxSetup 返回一个对象,您可以从中查询任何属性(例如超时或缓存)。