我在运行JavaScript代码的Google Chrome上使用“自动填充”扩展。我想通过相同的类名ctl01_ctl00_Main_Main_wtWeighted_txtWeight_xxxxx
将所有ID的weightBox Numeric
数值从0更改为100。
我最好的猜测是下面的代码,但什么也没有。
document.getElementsByClassName('weightBox Numeric').value = "100";
答案 0 :(得分:2)
fig, ax = plt.subplots()
for circle in circles:
ax.scatter(circle[:, 0], circle[:, 1])
ax.set_aspect('equal')
plt.show()
返回实时集合。换句话说,它是一种数组。因此,您必须遍历每个值才能更改它们。您也可以在此处使用querySelectorAll:
n = [1, 10, 20, 30, 40, 50, 60]
r = [0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6]
circles = circle_points(r, n)
fig, ax = plt.subplots()
for circle in circles:
ax.scatter(circle[:, 0], circle[:, 1])
ax.set_aspect('equal')
plt.show()