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.
从 .load() 调用返回一堆图像名称到服务器后,我想知道有多少图像名称发送给我。有没有办法让服务器上的 PHP 将那个数字写入客户端的 .load 完成例程可以看到的地方?
谢谢
$.post('ajax/test.html', function(data) { var count = data.match(/<img/g); alert("images: " + count.length); $("#element").html(data); });
此脚本计算响应中标签存在的次数,然后将数据附加到 id="element" 的元素。