提问人:Cp Support 提问时间:4/19/2023 更新时间:4/19/2023 访问量:79
这在控制台中给了我响应,但我希望使用 jquery 在变量中做出响应
This gives me response in console but i want response in a variable using jquery
问:
我想将其转换为jquery并将响应存储在变量中,并将其显示在警报框中
(function () {var s = document.createElement('script');var h = document.querySelector('head') || document.body;s.src = 'https://acsbapp.com/apps/app/dist/js/app.js';s.async = true; s.onload = function () {acsbJS.init({statementLink: '', footerHtml: '', hideMobile: false, hideTrigger: false,disableBgProcess: false, language: 'en', position: 'right',leadColor: '#146FF8',triggerColor: '#146FF8', triggerRadius: '50%', triggerPositionX: 'right',triggerPositionY: 'bottom', triggerIcon: 'people',triggerSize: 'bottom', triggerOffsetX: 20,triggerOffsetY: 20, mobile: {triggerSize: 'small', triggerPositionX: 'right', triggerPositionY: 'bottom',triggerOffsetX: 20, triggerOffsetY: 20, triggerRadius: '20'}});};h.appendChild(s);})();
我尝试从jquery调用它,但它没有给我想要的结果
即使我可以使用 JavaScript 在变量中获得响应也会起作用
$.Ajax({
type: 'GET',
url: '@Url.Action("https://acsbapp.com/apps/app/dist/js/app.js")',
dataType: 'json',
async: true,
data: { Section: 'Notification', mode: 'add' },
success: function (data) {
alert(data);
},
error: function () { },
error: function (msg) {
alert(msg);
}
});
答: 暂无答案
评论