js基本用法

选择器及循环用法
document.querySelectorAll('input[type=text]').forEach(function(element) {
element.value=8;
});
选择器或的用法
document.querySelector('input[type=submit],input[type=button]').click();

你可能感兴趣的:(js基本用法)