我一直在使用WebView.execute_js()弹出一些消息或数据,如下所示
WebView.execute_js("alert('"+message+"')")
但我们的客户已指定为警报框设置自定义按钮。我们有什么方法可以取得这样的成功。
请提供一些示例代码,因为我对此框架完全不熟悉。
谢谢
答案 0 :(得分:1)
您可以使用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