如果格式错误,请抱歉。
基本上,我试图在Python中阅读由JavaScript填充的HSV表单的值。
基本上,用户选择色轮上的位置,此位置的HSV值填充下面的HSV表格。我试图在Python中访问这些值,但因为这些表单是动态填充的,所以我没有运气。关于如何在Python中访问这些值的任何建议都将非常感激。
<!DOCTYPE html>
<html>
<head>
<title> Getting colors </title>
</head>
<body>
<script src="jscolor.js"></script>
<input class="jscolor {onFineChange:'update(this)'}" value="ffcc00">
<form>
H:<br>
<input id="p1" type="text" name="H"><br>
S:<br>
<input id="p2" type="text" name="S"><br>
V:<br>
<input id="p3" type="text" name="V"><br>
</form>
<script>
function update(picker) {
document.getElementById("p1").value = Math.round(picker.hsv[0]) ;
document.getElementById("p2").value = Math.round(picker.hsv[1]) ;
document.getElementById("p3").value = Math.round(picker.hsv[2]) ;
}
</script>
<img src="https://192.168.1.24:5050/cam.mjpg"/>
</body>
</html>