Показать сообщение отдельно
  #3 (permalink)  
Старый 23.05.2016, 17:17
Профессор
Отправить личное сообщение для Dilettante_Pro Посмотреть профиль Найти все сообщения от Dilettante_Pro
 
Регистрация: 27.11.2015
Сообщений: 2,899

Proudmore,
В инпуты в сенд добавить
onchange="send(this)"

И тогда
function send(referer) {
        var id= referer.id,
	     value = referer.value;
	nocache = "&nocache=" + Math.random() * 1000000;
	var request = new XMLHttpRequest();
				request.onreadystatechange = function () {
					if (this.readyState === 4) {
						if (this.status === 200) {
							if (this.responseText !== null) {
							}
						}
					}
				}
				request.open("GET", "var"+id +"?"+value+"?"+ nocache, true);
				request.send();
}
Ответить с цитированием