JavaScript
20
Вклад в тег
<div>
<form name="publish">
<input type="text" name="message" placeholder="введите сообщение"/>
<input type="submit" value="отправить"/>
</form>
</div>
document.forms.publish.onsubmit = function() {
var message = this.message.value;
console.log(message)
return false;
};
document.getElementsByTagName("input")[0].value
<div>
<form name="publish">
<input type="text" name="message" placeholder="введите сообщение"/ onchange='eventForm(this.value)'>
</form>
</div>
<script>
function eventForm(value) {
if (value == 'test') {
alert('Вы ввели то что нужно')
}
}
</script>
var item_unitaz = [
{'item_id':1, 'article':'DE23421312', 'name':'Привет','type':2},
{'item_id':2, 'article':'DE12421442', 'name':'Пока','type':32},
{'item_id':3, 'article':'DE78677833', 'name':'Воробей','type':68},
{'item_id':4, 'article':'DE23442235', 'name':'Петух','type':45}];
function compareUnitaz(a, b) {
return a.type - b.type;
}
item_unitaz.sort(compareUnitaz)