这是我的代码
<button class="btn widget uib_w_2 d-margins btn-danger" data-uib="twitter%20bootstrap/button" data-ver="1" id="btn" onclick="show()"><i class="glyphicon glyphicon-search button-icon-left" data-position="left"></i>Show</button>
</div>
<script>
function show(){
intel.xdk.notification.alert("your name is:","tiltle","ok");
}
</script>
</body>
当我在模拟器中运行时无法正常工作!!
答案 0 :(得分:1)
您可以使用Cordova notification
插件,但不推荐使用intel.xdk.notification
插件。
Cordova通知插件的工作方式相同,您必须在Intel XDK插件管理中添加此插件,然后在模拟器上进行测试:
navigator.notification.alert(message, alertCallback, [title], [buttonName])
答案 1 :(得分:-1)
intel.xdk.notification.alert("your name is:","tiltle","ok");
从我所看到的,你拼错的标题。看看是否能修复它。