で関数を使用しようとしていますclick()
。コンソールにエラーが表示されません。クリックが発生したときに関数でアクションを実行するようにするにはどうすればよいですか? ここに私が取り組んでいるコードがあります。
inputIds = [].filter.call(document.getElementsByTagName('input'), function(el) {
return el.id.indexOf('ansx') === 0;
}).map(function(el) {
return el.id;
});
// random number between low and high range
inputId = inputIds[Math.floor(Math.random() * inputIds.length)];
document.getElementById(inputId).click(function() {
chrome.extension.sendMessage({ message: "text here" }, function(response) {
return response;
});
});