首页 \ 问答 \ SQL值列表00:00至24:00(SQL List of Values 00:00 to 24:00)

SQL值列表00:00至24:00(SQL List of Values 00:00 to 24:00)

我在我的Oracle APEX页面中创建了一个基于SQL查询的选择列表。

我希望它显示这些时间值:

00:00
00:01
00:02
.
..
...
.
.
23:59

这怎么能实现?


I'm creating a select list based on a SQL Query in my Oracle APEX page.

I want it to show these time values :

00:00
00:01
00:02
.
..
...
.
.
23:59

How can this be achieved?


原文:https://stackoverflow.com/questions/39716901
更新时间:2022-01-30 14:01

最满意答案

你只是在这里操纵CSS。 请参阅规范 - URI是可以接受的。 浏览器支持是可变的。 我好几年没试过了,但是上次我做Internet Explorer时要求游标采用.cur格式。

尽管如此,虽然有可能,但用户可以识别出一套很好的标准游标。 您很少会有标准列表未涵盖的游标有用的事物,并且该列表确实涵盖了应该使用的内容,因此用户无需学习新图标。


You are just manipulating CSS on the fly here. See the spec — URIs are acceptable. Browser support is variable. I haven't tried it in years, but last time I did Internet Explorer required the cursors to be in .cur format.

That said, while it is possible, there are a good set of standard cursors that users recognise. It is rare that you will have thing usefully represented by a cursor that isn't covered by the standard list, and when that list does cover things it should be used so users don't have to learn a new icon.

相关问答

更多
  • 尝试: 已更新为使用jQuery 1.8 + $(document).ajaxStart(function() { $(document.body).css({'cursor' : 'wait'}); }).ajaxStop(function() { $(document.body).css({'cursor' : 'default'}); }); 游标在任何ajax开始和结束时都会更改。 这包括.load() 。 在这里尝试不同的光标样式: https://developer.mozil ...
  • 你只是在这里操纵CSS。 请参阅规范 - URI是可以接受的。 浏览器支持是可变的。 我好几年没试过了,但是上次我做Internet Explorer时要求游标采用.cur格式。 尽管如此,虽然有可能,但用户可以识别出一套很好的标准游标。 您很少会有标准列表未涵盖的游标有用的事物,并且该列表确实涵盖了应该使用的内容,因此用户无需学习新图标。 You are just manipulating CSS on the fly here. See the spec — URIs are acceptable. B ...
  • 您可以使用XMLHttpRequest的setRequestHeader方法: var xmlhttp = new XMLHttpRequest(); xmlhttp.setRequestHeader('Content-Type', 'video/mp4'); xmlhttp.setRequestHeader('Content-Length', '339108') You can use setRequestHeader method of XMLHttpRequest: var xmlhttp = n ...
  • 在你的jQuery中使用: $("body").css("cursor", "progress"); 然后再次恢复正常 $("body").css("cursor", "default"); In your jQuery use: $("body").css("cursor", "progress"); and then back to normal again $("body").css("cursor", "default");
  • 如果(且仅当)你需要一些自定义动画,请查看这个甜蜜的jQuery插件: http : //weepy.github.com/jquery.path/ 它应该让你朝着正确的方向前进。 你的一般方法: 在步骤4中创建一个将Box2摆动到位的路径。 将Box2的z-index更改为Box1的顶部。 使Box2沿相反方向沿相同路径返回。 另外:这是一个很好的自述文件来创建你的路径: https : //github.com/weepy/jquery.path/blob/master/README.markdown ...
  • 这是一种不同的方法。 将单击处理程序附加到表而不是每个单元格。 您可以在HTML中使用 onclick实现,但通常最好将JavaScript和HTML分开: document.querySelector('table').addEventListener('click', function(evt) { ... } 在处理程序中,使用 event.target确定单击的内容: var o= evt.target; 测试是否点击了这样的 td : if(o.tagName==='TD') { .. ...
  • 看到这篇文章: http : //beradrian.wordpress.com/2008/01/08/cross-browser-custom-css-cursors/ cursor CSS属性可以带一个url()值: .my-cursor { cursor: url("mysite/cursor.png"), default; } 不同的浏览器有不同的弱点。 多年以来,我一直没有搞砸这个,所以我不确定你会遇到什么样的浏览器支持,当然在移动设备上它也不相关。 See this article: ht ...
  • 您需要将文本包装成某些内容 - 您无法直接定位文本内容。 您可以使用jQuery来获取本答案中描述的文本节点,然后使用您的类wrap()它们wrap()在span : $('td').contents().filter(function() { return this.nodeType === 3; }).wrap(''); td { width:200px; height:200px; border: ...
  • 在大约4小时30分钟试图让自定义鼠标在Windows上使用SFML之后,我终于设法完成了我预计使用不超过5到10分钟的任务。 因此,我在这里留下了我自己的问题的答案,因为互联网无法为像我这样的菜鸟提供清洁和清晰。 对任何可能需要它的人都可能有用。 #include #include int main() { sf::RenderWindow window(sf::VideoMode(800, 600), "Simple Cursor ...
  • 这样做的基本途径: 创建自定义游标并使用C ++ Metro DLL将其打包在.res中通过查看C ++项目中的resource.h文件记下您的资源ID在我的项目中,资源编号为101,我没有调整。 将.res添加到CSharp XAML Metro项目使用文本编辑器打开.csproj在第一个属性组中添加指向.res文件的部分使用您引用的函数调用将光标切换到自定义光标,并且通过在resources.h上查看找到的资源编号。 Window.Current.CoreWindow.PointerCursor = n ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)