当用户单击单选按钮时,我想隐藏一个下拉列表。为此,我将使用 AJAX 而不是 JS。在这里,我的代码:
<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
var element = document.getElementById("myDiv");
element.style.display = "";
**element.innerHTML=xmlhttp.responseText;**
}
}
xmlhttp.open("POST","**URL**",true);
xmlhttp.send();
}
</script>
以上 element.innerHTML=xmlhttp.responseText & URL 我应该使用吗?没有理由将 ajax 调用传递给其他页面。我在这里完成了我的工作。没有 URL 脚本不起作用。请帮我解决这个问题。