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.
有人建议我不要使用 jQuery 的 .load() 方法
$('#result').load('ajax/test.html #result');
但我不确定为什么。
现在我一直在使用模板(mustache)来解析从 ajax 请求返回的 json,但是 .load() 方法似乎要简单得多。
我正在处理的站点是相当繁重的后端(对服务的多次调用和要检索的大量数据),但我需要替换的数据有时需要相当复杂的模板标记。
有什么好的理由我应该避免它吗?