onClick = 'function(this)'
このJavaScriptコードをjQueryに変更しようとしていますが、jQueryの.click
関数で使用するのと同じことはわかりません。
JavaScript:
function setInput(text) {
var getClicked = text.name;
var click = document.getElementById(getClicked);
var show = document.getElementById('show_' + getClicked);
show.value = click.value;
}
HTML:
<input type='text' name = "a" id = "a" onclick='setInput(this);'>
<input type = "text" id = "show_a"><br>
<input type='text' name = "b" id = "b" onclick='setInput(this);'>
<input type = "text" id = "show_b">