gpt4 book ai didi

javascript - 通过 Javascript/Jquery 更改 JSColor 值

转载 作者:行者123 更新时间:2023-12-01 02:04:50 25 4
gpt4 key购买 nike

如何通过 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

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

关于javascript - 通过 Javascript/Jquery 更改 JSColor 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50197204/

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