2025-06-27 10:04:22 +08:00

38 lines
804 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="../lib/jquery/dist/jquery.js"></script>
</head>
<body>
</body>
</html>
<script>
//所有摄像头 100的可以看到所有摄像头
var json2 = {
"cmdId": 100
, "user": "xiangyanqiang"
, "password": "d41d8cd98f00b204e9800998ecf8427e"
, "dev": null
, "filter": false
, "streamtype": 0
, "devId": "DS-IPC-B12-120180804AACHC40385306"
}
$.ajax({
type: "POST",
url: "http://47.101.57.40:7006/",
data: {
json: JSON.stringify(json2)
},
dataType: "application/json",
success: function (data) {
alert('sf');
console.log(data);
}
});
</script>