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.
我有一个带有姓名、姓氏、一个下拉菜单的表单,用户可以在其中选择不同的颜色和一个消息框(textarea)。我的想法是根据使用下拉菜单选择的颜色更改 textarea 背景的颜色。
希望任何人都可以帮助我。
谢谢你的建议,恩里科
进行必要的改进。这会让你开始。
http://jsfiddle.net/eTJGV/1/
使用 jquery 更改属性,
$('#color').change(function(){ var color = $(this).val(); $('textarea').css('background-color',color); });