我在我的PhoneGap应用程序中使用了cordova插件phonegap-plugin-portrait-barcodescanner。
所以我无法将变量结果和Scanner结果结合起来。我已将此结果合并到.load(VAR + SCANNER RESULT);
在javascript警报中,它没问题。但在Load();不工作。
Thankks!
$('#scan').click(function() {
cordova.plugins.barcodeScanner.scan(
function(result) {
var irisUrl = 'http://www.vcomm.com.br/';
$('#Load').load(irisUrl + result.text);
alert("http://www.vcomm.com.br/" + result.text);
},
function(error) {
alert("Scanning failed: " + error);
}
);
});
答案 0 :(得分:0)
也许你必须尝试这样的事情:
$('#Load').load(irisUrl, function () {
irisUrl = $(this) + result.text();
});
或类似的东西。我不确定,因为我不知道你的例子中该警报的结果。你想看什么等。