イベントの1つでユーザー入力を作成しています。
var throwConnectBox = function() {
chat_box = document.getElementById('box');
div = window.parent.document.createElement('div');
input = window.parent.document.createElement('input');
input.type = "submit";
input.value = "Join chat";
input.onclick = "conn.send('$connect\r\n');";
div.appendChild(input);
chat_box.appendChild(div);
}
...しかし、結果の入力にはonclickプロパティがありません。使ってみた
input.onclick = conn.send('$connect\r\n');
...代わりに、どちらでも機能しませんでした。私は何を間違えていますか?
これを試して:
input.onclick = function() { conn.send('$connect\r\n'); };
スティーブ
こちらの行の1つに問題があります。あなたのために修正しました:
var throwConnectBox = function() {
chat_box = document.getElementById('box');
div = window.parent.document.createElement('div');
input = window.parent.document.createElement('input');
input.type = "submit";
input.value = "Join chat";
/* this line is incorrect, surely you don't want to create a string? */
// input.onclick = "conn.send('$connect\r\n');";?
input.onclick = function() {
conn.send('$connect\r\n');
};
div.appendChild(input);
chat_box.appendChild(div);
}
それは理にかなっていますか?
これらを渡すつもりなら、\ r\nをエスケープしたいと思うかもしれません...
conn.send('$connect\\r\\n')
あなたのonclickハンドラが何を達成しようとしているのかわかりません...
これが、jQueryを使用することにした理由の1つです。
$('<input type="submit" value="Join chat" />')
.click( function() { conn.send('$connect\r\n'); } )
.appendTo('<div></div>')
.appendTo('#box');