<input type="text" onchange="このなか">はこんな感じになっている
with (window) { // これはどこでも一緒だけど、念のため
with (document) {
with (this.form) {
with (this) {
このなか
}
}
}
}
つまり、<a href="#" click="alert(getElementById('id'))">とかできる。
(非推奨)
あと、$('form :input[name="window"]')があると
window.openとかが呼べなくなる。
(「this.form.window.open」になるので)
with (window) { // これはどこでも一緒だけど、念のため
with (document) {
with (this.form) {
with (this) {
このなか
}
}
}
}
つまり、<a href="#" click="alert(getElementById('id'))">とかできる。
(非推奨)
あと、$('form :input[name="window"]')があると
window.openとかが呼べなくなる。
(「this.form.window.open」になるので)
コメントする