我需要使用html select选项创建一个php rss阅读器。 Xml文件将被加载到该选择框中,因此当用户从选择框中选择地址时,将显示其余的Feed。有什么建议怎么做, 感谢
答案 0 :(得分:1)
您可以使用AJAX向服务器发送请求,这意味着您将在目录中创建一个PHP格式的文件
<?php
$_GET xml from select and other documents
carry out checks and set XML according
echo new XML
?>
然后当内容框需要更新一个看起来像这样的JavaScript函数时
function onEvent(){
url = "phpscriptname.php?"+values;
request = new XMLHttpRequest();
request.onreadystatechange = function() {
getElementByID(select) = request.innerHTMl().toXml(); //toXml is not a function see other Stack overflow question to solve this problem
request.open("GET",url,true);
request.send();
这是一个粗略的答案,展示了如何对AJAX进行研究,JavaScript和可能的PHP将是必需的