如何通过javascript设置输入文本框(属于JSColor类)的值?我想同时更改背景颜色和输入值(通过Javascript命令或Jquery。足够好)。

谢谢。

最佳答案

使用jQuery

var yourinputid = $('#YOURINPUTID') //save some resources by not duplicating the selector
yourinputid.val('yourcolor'); //set the value
yourinputid.css('background-color', '#yourcolor'); //set the background color


没有jQuery

var yourinputid = document.getElementById('YOURINPUTID'); //save resources..
yourinputid.value = 'yourcolor'; //set the value
yourinputid.style.backgroundColor = '#yourcolor'; //set the background color


请注意,将颜色值设置为对象时,请勿在颜色开头使用#。

09-04 07:42