0
Regbutton.jsChrome拡張機能のテキストフィールド?
window.onload = timeout();
//document.getElementById('regButton').onClick = textfield();
function textfield() {
var x = document.createElement('INPUT'); // INPUT also works
x.setAttribute('type', 'text');
x.setAttribute('value', 'text');
}
function timeout(){
console.log("Loading");
var button = document.getElementById('regButton');
if(button != null){
console.log(button);
}else{
console.log("No button");
}
}
popup.html:
<!DOCTYPE html>
<html>
<head>
<script src="regbutton.js"></script>
<script src="background.js"></script>
<--...-->
<button id="regButton" class="button" type="button">Regulations</button>
だから私は、ボタンのクリックでテキストフィールドを作成しようとしていますが、それは、アイデアを動作していませんか?
? –