我正在使用JavaScript Spectrum颜色选择器。我需要在函数(颜色)中将#myid发布到colour.php。提前谢谢。
<script>
$("#myid").spectrum({
preferredFormat: "hex6",
change: function(color) {
$.post('colour.php', { colour: color.toHex } );
}
});
</script>
答案 0 :(得分:0)
$.post('colour.php', { colour: color.toHex, id: (this.id) } );
我今天早上回答了自己的问题,现在将颜色和内容发布到php。感谢@RandomSeed让我想到我实际想要实现的目标!