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 mobile 通过 ajax 调用处理链接上的所有点击和表单提交。我如何使用 Zepto 库实现相同的目标?
谢谢!
尚未对其进行测试,但它应该像这样工作
$(function() { $("a").click(function(){ var link = $(this).attr("href") $.get(link, function(response){ $("#myContainer").append(response) }) return false }) })