JavaScript Dropdown Lists: Select onClick
In a web application I'm working on, I decided to consolidate a few buttons by turning them into select elements of one dropdown list, with onClick events loading for each option pressed. However, this does not work in iOS (Safari on the iPhone). Is there a different event I can use to grab menu se开发者_开发知识库lection from Safari for iPhone?
Try onchange:
<select name="foo" onchange="bar();">
<!-- etc. -->
Perhaps try onchange
?
精彩评论