JobsSummaryRetriever.js
上传用户:z100004
上传日期:2020-03-27
资源大小:1084k
文件大小:1k
源码类别:
TAPI编程
开发平台:
Visual Basic
- // Copyright (c) 2008, The Code Project. All rights reserved.
- function RetrieveJobsSummary(divName, objectId, objectTypeId, countryId, attributesList) {
- var elm = $("div[id=" + divName + "]");
- if (elm&&elm.length > 0) {
- var queryString = "/Script/Jobs/Ajax/GetRelatedJobs.aspx?";
- queryString += "objId=" + objectId;
- queryString += "&typeId=" + objectTypeId;
- queryString += "&cntrId=" + countryId;
- queryString += "&atrList=" + attributesList;
- queryString += "&r=" + Math.random().toString();
- $(elm).load(queryString);
- }
- }