作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发 onsen-ui,我想实现一个每次都执行某些操作的操作表
function show() {
ons.openActionSheet({
title: 'My Action Sheet',
cancelable: true,
buttons: ['Label 0', 'Label 1', 'Label 2']
});
}
<button onclick="show()">Show action sheet</button>
我单击其中一个标签。我到处寻找答案,但似乎没有一个有效。我该怎么做?
最佳答案
actionsheet按钮内的点击功能可以这样处理。试试这个。
function show() {
ons.openActionSheet({
title: 'My Action Sheet',
cancelable: true,
buttons: ['Label 0', 'Label 1', 'Label 2']
}).then(index => {
if (index === 0 ) {
function1();
} else if (index === 1 ) {
function2();
}else {
function3();
}
});
}
关于javascript - 如何将 onClick 函数添加到操作表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61130220/
我是一名优秀的程序员,十分优秀!