我有两页,第A页和第B页。页面A将包含未知数量的无序列表元素。我无法控制有多少列表元素。
在页面B上,我想使用PHP从页面A中获取li的数量并显示该数字。这个想法是Page A将保存用户最喜欢的Wordpress帖子链接,而Page B将显示该数量的收藏夹。
任何帮助都会很精彩。感谢
答案 0 :(得分:2)
使用 PHP Simple HTML DOM Parser 从其他网页解析html。 Download it并包含在您的脚本中:
include('simple_html_dom.php');
$html = file_get_html('http://example.com/yourpage.php');
$licount = count($html->find('li')); // Here it is
好。看起来OP不需要使用服务器端代码。使用javascript(不要忘记包含jQuery):
$(document).ready(function(){
$.get("/favorites", function(data){
$("#favorites").html($("li", $(data)).length)
})
})
这会将元素#favorites
的内容替换为/ favorites文件中li
的数量