我正在尝试将此 JavaScript 代码更改为 jQuery,但我不确定onClick = 'function(this)'
与 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">