嗨 下面是通过 jquery 中的 ajax 调用我调用函数 1:"setEmailAFriendCount" 的代码,我们在其中发送具有 json 数据类型的变量,但我想从 ajax 调用调用相同的函数但需要向它发送额外的字符串参数.
很迷茫,怎么寄。磷
function getEmailAFriendCountDynamic(ArticleURL, Id) {
alert('Hi');
var location = ArticleURL;
if (location.indexOf('?') >= 0) {
location = location.substring(0, location.indexOf('?'));
}
$.ajax({
url: 'http://contactimporter.mercola.com/EmailArticleCount.aspx?url=' + location,
dataType: "jsonp",
jsonpCallback: "setEmailAFriendCount"
});
}
Function 1:
function setEmailAFriendCount(json) {
$('#MyTextbox').text(json.count);
}
Function 2:
function setEmailAFriendCount(json,emailtofrdclientid) {
$('#' + emailtofrdclientid + '').text(" : " + json.count);
}