Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含单选按钮组合框、复选框和输入框的 html。我在 uiwebview 上运行这个 html。我需要一种能够知道用户选择了哪个答案的方法。
我怎样才能做到这一点?
如果有人遇到同样的问题,我找到了解决方法,事实上,您需要在定义复选框的标签中添加运行以下内容的 html:
onclick ="checkboxClicked()"
例如:
<input type="checkbox" id="checkboxid" onclick ="checkboxClicked()"/>
一旦选中复选框,它将调用函数 checkboxClicked()。
您将在 JavaScript 文件中实现此功能,一旦您在 webview 上运行它,您将与您的 html 一起编译该文件。