英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论