求JS代码:点击li复制括号外的内容,点击另一个div粘贴到指定的input,再点击....
发布网友
发布时间:2022-05-17 16:09
我来回答
共1个回答
热心网友
时间:2022-05-17 17:38
你好,引入jQuery。然后运行下面的代码。
<script type="text/javascript">
$(function(){
var col = '';
var val = '';
$('.1bcolor_selectGroups').find('li').each(function(index){
$(this).click(function(){
col = $(this).css('backgroundColor');
text = $(this).text();
console.log(col+'---'+text);
});
});
$('#b1p').click(function(){
$('#bc1').val(text);
});
$('#b1e').click(function(){
$('#messageshow').css('backgroundColor',col);
});
});
</script>