我一直在使用WebView.execute_js()弹出一些消息或数据,如下所示
WebView.execute_js("alert('"+message+"')")
但是我们的客户指定了警报框的自定义按钮。我们有什么办法来取得这种成功吗?
请制作一些示例代码,因为我对这个框架完全陌生。
谢谢
您可以使用
Alert.show_popup()
来完成此要求。
Alert.show_popup( {
:message => 'Some message',
:title => 'Custom title',
:icon => '/public/images/icon.png',
:buttons => ["Yes", "No"] } )
希望这对您简要 http://docs.rhomobile.com/rhodes/device-caps#alerts 有所帮助