开发者

How to fetch the selection of pop-up menu and then zoom out?

开发者 https://www.devze.com 2023-02-22 20:49 出处:网络
How can I fetch the selection of a p开发者_JS百科op-up menu after the user has selected \"his\" item and then pressed \"Done\"?

How can I fetch the selection of a p开发者_JS百科op-up menu after the user has selected "his" item and then pressed "Done"?

The selected can be displayed with:

 var clicked = document.getElementById("popup").value;  

alert(clicked);

And, how can I zoom out, after this item has been selected?


I have put a "ChangeHandler" on the pop-up men

function myChangeHandler(event) {

var clicked = document.getElementById("popup").value;
alert(clicked);

}

BR,

Stefan

0

精彩评论

暂无评论...
验证码 换一张
取 消