Jump to content
  • 0

Помогите пожалуйста разобраться с loadHTML(sURL)


nds
 Share

Question

Делаю страницу с подгрузкой текста через скрипт.

функция loadHTML(sURL) нехочет работать c url, ругается, что ей передается не обьектный тип.

подскажите пожалуйста как заставить ее работать

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>


<script type="text/javascript"><!--

function loadHTML(sURL)
{ alert('alert');
var request=null;

// пытаемся создать объект для MSXML 2 и старше
if(!request) try {
request=new ActiveXObject('Msxml2.XMLHTTP');
} catch (e){}

// не вышло... попробуем для MSXML 1
if(!request) try {
request=new ActiveXObject('Microsoft.XMLHTTP');
} catch (e){}

// не вышло... попробуем для Mozilla
if(!request) try {
request=new XMLHttpRequest();
} catch (e){}

if(!request)
// ничего не получилось...
return "";

// делаем запрос
request.open('GET', sURL, false);
request.send(null);

// возвращаем текст
return request.responseText;}
--></script>





<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Тest</title>
</head>

<body>


<select id = "test1" onChange=" document.getElementById('test2').innerHTML = document.loadHTML('http://sgr.org.ua/test/test.php?id=11');">
<option value=''>Выберите себе поздравление</option>
<option value="11">текст</option>
</select>

<span id = "test2">
<select>
<option value=''>Выберите в предыдущем селекте</option>
<option value="11">Выберите в предыдущем селекте</option>
</select>
</span>

</body>
</html>

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy