‘uni_modal’ 用于什么?

huangapple go评论67阅读模式
英文:

What is 'uni_modal' for?

问题

I am trying to figure out what is uni_modal and I cant seem to find it on the internet

$('.manage_percentage').click(function(){
    uni_modal('Manage Subject\'s Components Percentage',"manage_percentage.php?id="+$(this).attr('data-id'))
})
英文:

I am trying to figure out what is uni_modal and I cant seem to find it on the internet

        $('.manage_percentage').click(function(){
            uni_modal('Manage Subject\'s Components Percentage',"manage_percentage.php?id="+$(this).attr('data-id'))
        })

答案1

得分: 1

"uni_modal()` 不是任何标准库中的标准函数,根据我的知识。它似乎是在您的代码库中定义的自定义函数。该函数似乎接受两个参数:一个字符串和一个URL。然而,没有进一步的上下文(函数定义),无法确定该函数如何处理这些参数。"

英文:

To best of my knowledge, uni_modal() is not a standard function from any standard library. It appears to be a custom function defined somewhere in your codebase.

The function seems to take two arguments: a string and a URL. However, without further context (the function definition), it is impossible to determine what the function does with these arguments.

huangapple
  • 本文由 发表于 2023年5月18日 02:02:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/76274987.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定