ajax rss feed example

4 29 0
ajax rss feed example

Đang tải... (xem toàn văn)

Thông tin tài liệu

http://vietjack.com/php/index.jsp Copyright © vietjack.com Ví dụ AJAX RSS Feed PHP Đôi điều RSS Really Simple Syndication sử dụng để công bố thông tin cập nhật từ Website audio, video, image, … Chúng ta tích hợp RSS feed tới Website sử dụng AJAX PHP Code minh họa cách hiển thị RSS feed Site bạn Tệp index.html Index page nên sau: function showRSS(str) { if (str.length==0) { document.getElementById("output").innerHTML=""; return; } if (window.XMLHttpRequest) { xmlhttp=new XMLHttpRequest(); } else { xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("output").innerHTML=xmlhttp.responseText; } } http://vietjack.com/ Trang chia sẻ học online miễn phí Page http://vietjack.com/php/index.jsp Copyright © vietjack.com xmlhttp.open("GET","rss.php?q="+str,true); xmlhttp.send(); }

Please Select an option to get RSS:

Select an RSS-feed: CNN BBC News PC World RSS-feeds Tệp rss.php rss.php chứa cú pháp cách lấy truy cập tới RSS feed trả RSS feed tới Webpage

Ngày đăng: 02/12/2017, 20:34

Mục lục

  • Ví dụ về AJAX RSS Feed trong PHP

    • Đôi điều về RSS

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan