在Titanium Appcelerator / Android中,我们可以使用此代码打开一个拨打号码的电话拨号。
var win = Ti.UI.createWindow();
win.backgroundColor = 'white';
// Create a Button.
var aButton = Ti.UI.createButton({
title : 'Charge',
height : 40,
width : 150,
top : 300,
left : 80
});
var value = '123456789#';
win.add(aButton);
aButton.addEventListener('click', function() {
Titanium.Platform.openURL('tel:' + value);
});
win.open();
问题是如何在拨号盘中显示#
:截至目前它只显示123456789.我尝试了很多方法,但它没有显示#
。还有其他方法吗?
阿里。
答案 0 :(得分:1)
尝试此操作(将“#”替换为“%23”):
var value = '123456789%23';
答案 1 :(得分:0)
哈希只是一个特殊字符,所以添加
%23
到你的
var value='123456789';
的字符串。
所以它看起来像: -
var value='123456789%23';
易。