Why can't I get the web content of this rss?

I want to get the rss content of this page with code
https://rss.lilydjwg.me/zhihu.

.
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <script src="http://127.0.0.1/jquery-3.3.1.js"></script>
    <script>
function Ajax( ) {
        var xmlHttpReq;
        xmlHttpReq = new XMLHttpRequest();
        if(xmlHttpReq != null){
            xmlHttpReq.open("get","https://rss.lilydjwg.me/zhihu/jian-dan-xin-li");
            xmlHttpReq.send(null);
            xmlHttpReq.onreadystatechange = RequestCallBack;
        }
        function RequestCallBack(){
            if(xmlHttpReq.readyState == 4 && xmlHttpReq.status == 200 ){
                document.getElementById("target").innerHTML = xmlHttpReq.responseText;
            }
        }
    }        
    </script>
  
    <input type="button" value="show content" onclick="Ajax();" />    
    <div id="target"></div>

</body>
</html>

Why can"t I get the content by clicking show content,? How should
be modified?

May.13,2021

homologous policy, https security policy


Cross-domain understanding

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3b740-2c28a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3b740-2c28a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?