Здравствуйте есть такой код.
Скрипт:
function spis4()
{
var sel = document.getElementById("spis4"); // Получаем наш список
var val = sel.options[sel.selectedIndex].value;
var ff = document.getElementById("tomba1");
var radius = theCircle.getAttribute("r");
alert(radius);
}
Круг в svg:
<svg width="700px" height="700px" id="tomba1" >
<circle cx="250" cy="250" r="5" style="fill-opacity: 0.5"
stroke="red" stroke-width="3" onclick="doCircle(evt)" />
Код списка:
<select id="spis4" onChange="spis4()" style="visibility: visible;">
<%
Connection con4=DriverManager.getConnection("jdbc:mysql://localhost:3306/dbase","root","root");
Statement stmt4=con4.createStatement();
String strQuery4 = "select * from model ";
ResultSet rs4 = stmt4.executeQuery(strQuery4);
while(rs4.next())
{
%>
<option value="<%=rs4.getInt("distancerouter")%>" ><%=rs4.getInt("model_id")%>)<%=rs4.getString("namerouter")%> - <%=rs4.getString("modelrouter")%>- <%=rs4.getInt("distancerouter")%>m
</option>
<%}%>
</select>
Что нужно изменить для того что бы при смене select`а менялся радиус круга.