我找到了来自skype dev site
的代码来自我的网页的电话:
Skype.ui({
name: "call",
element: "skypeButton",
participants: ["+390852298965"],
imageSize: 32
});
但是我需要使用从文本框中恢复的动态数据来拨打电话,例如:
Skype.ui({
name: "call",
element: "skypeButton",
participants: function () {
return [$("#phonenumber").val()];
},
imageSize: 32
});
但是这段代码不起作用...... 希望有人可以帮助我!!
提前致谢!
答案 0 :(得分:0)
嘿,尝试类似的东西
var var={
name: "call",
element: "skypeButton",
participants: ["+390852298965"],
imageSize: 32
};
var.participants=[$("#phonenumber").val()];
Skype.ui(var);