<html>
<head>
</head>
<body>
<a href="#" id="b1">Кнопка</a>
<input type="text" id="a1">
<input type="password" id="a2">
<script>
document.querySelector('#b1').onclick = function() {
'use strict';
var log = document.querySelector("#a1"),
pass = document.querySelector("#a2");
log.value = "123321";
pass.value = "123321";
};
</script>
</body>
</html>
у меня работает !