gpt4 book ai didi

javascript - jquery中的多个元素选择

转载 作者:行者123 更新时间:2023-11-28 16:06:01 24 4
gpt4 key购买 nike

我正在尝试将此 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">

最佳答案

$('input[type="text"]').on('click', function(){
$('#show_' + $(this).attr('name')).val($(this).val());
});

关于javascript - jquery中的多个元素选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14915117/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com