S
susinmn
Есть поле allow multiple values(separate new line) c action hotspot. Можно ли по клику значения в поле получить само значение или позицию?
Вот это не работает...
This onClick event handler for a button displays the selected values of a "Dialog list" field.
with (window.document.forms[0].MyList) {
for (n=0; n<length; n++) {
if (options[n].selected) {
alert (options[n].text)
}
}
}
Вот это не работает...
This onClick event handler for a button displays the selected values of a "Dialog list" field.
with (window.document.forms[0].MyList) {
for (n=0; n<length; n++) {
if (options[n].selected) {
alert (options[n].text)
}
}
}