'test-tips-prompt-0': function () { layer.prompt({ title: '社区名称' }, function (value, index, elem) { if (value === '') return elem.focus(); var test = window.location.search; test = test.substring(test.indexOf("=") + 1, test.length); $.ajax({ type: "Get", url: "/api/ApiInsertcommunity", dataType: "json", success: function (res) { } }); layer.msg('获得:' + util.escape(value)); // 显示 value // 关闭 prompt layer.close(index); });
时间: 2024-02-10 12:06:31 浏览: 56
git-prompt-useremail:zsh插件为git user.email添加了提示提醒
这段代码是一个 JavaScript 函数,用于弹出一个提示框,让用户输入社区名称。用户输入名称后,代码会通过 Ajax 技术将名称传递到后端的 "/api/ApiInsertcommunity" 接口进行处理。如果处理成功,代码会执行一个空的 success 回调函数。最后,提示框会关闭并且显示用户输入的名称。
阅读全文