这是我的拾色器的代码。
http://jsfiddle.net/7jg4e/728/
<img id="1" alt="test" src="https:/test.com/IMGService.ashx?imagetype=typeit&postid=7406&width=100%&height=142&RenderText=[field title]&TextSize=96&TextColor=%23ff0000&BgColor=%23ffffff">
这是我的img标签,它是api将文本转换为图像的标签。我想将colopicker添加到此图像标签,以便用户可以更改图像的颜色,因此我使用了colorpicker,并且每个javascript或Jquarry的colorpick输出都需要使用id标签,但是我如何在BgColor =中获取颜色名称值
希望你明白我的意思。
我的意思是我想如果用户使用颜色选择器并选择一种颜色,则它在像波纹管一样的img中的BgColor中自动更新
<img id="1" alt="test" src="https:/test.com/IMGService.ashx?imagetype=typeit&postid=7406&width=100%&height=142&RenderText=[field title]&TextSize=96&TextColor=%23ff0000&BgColor=%23**Color Picker color value Here**">
我想在这里打印colorpicker值。可能吗
;BgColor=%23**Color Picker color value Here**">
对不起,英语不好。
最佳答案
let src = 'URL' + $('#color').val().replace('#','');
$('#1').attr('src', src);
ID 1在js / jquery中无效。
关于javascript - 获取HTML中的colorpicker值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54036586/