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 post 方法获取数据:
$(document).ready(function(){ $.post("page2.php",function(data){ $("#content").html(data); }); });
通过上述方法,我可以得到page2.php的整个html。但我只想要 div id="abc" 的内容。如何通过处理来自 jquery $.post 的数据来获取?问候
您可以使用 jQuery 来解析和探索 HTML:
$($.parseHTML(data)).find('#abc')