Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个表单中有两个输入字段,并希望使用 onkeyup 将第一个输入字段的值添加到第二个输入字段的 alt 属性中。
如何使用 Javascript 来完成?
我建议使用 jQuery
$('#field1').keyup(function(){ $('#field2').attr('alt', $(this).val()); });
应该做你想做的。