Jump to content
  • 0

Запрет на ввод символа


DivMan
 Share

Question

Я не полностью понимаю этот код

https://jsfiddle.net/pv6b2LL3/

<input type='text' id='target'>
document.getElementById("target").addEventListener('input', function() { 
	var tmp = document.getElementById("target").value; 
	var arrReplace = ['a', 'b', 'c', 'd', 'e']; 
  
		for (var i = 0; i < arrReplace.length; i++) { 
		tmp = tmp.split( arrReplace[i]).join(''); 
	} 

	document.getElementById("target").value = tmp; 
});

Вот допустим, я ввожу 'a', событие отслеживается, в переменную tmp запоминается 
введённое значение.

Потом в цикле, перебирается в заранее сделанный массив
и введённое значение разбивается на массив, в котором значение будет из массива arrReplace и из всего этого получается строка.

Я этого момента не понял.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Я этот код отилично понимаю и могу с уверенностью сказать, что это просто за гранью добра и зла. Это уже не клинический случай, медицина бессильна, тут сразу в морг.

Link to comment
Share on other sites

  • 0

https://jsfiddle.net/alexriz/27mjkaek/ <= еще не много клиники :)

3 часа назад, DivMan сказал:

Потом в цикле, перебирается в заранее сделанный массив
и введённое значение разбивается на массив, в котором значение будет из массива arrReplace и из всего этого получается строка.

Я этого момента не понял.

я не понял, что ты не понял :D

Link to comment
Share on other sites

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