问题描述
需要的效果是我做了一个定时任务让用户配置 但是cron表达式很容易错就需要做一个提示,来引导用户输入正确的表达式网上查了很多 大多都是 使用css样式 非常繁琐的 有没有简便的组件或方法 可以做到
解决方案
<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>hover demo</title> <style> </style> <script src="http://code.jquery.com/jquery-latest.js"></script></head><body> <ul><div> <input type="text" /></div> </ul> <script>$("input").hover( function() { $( this ).parent().append( $( "<span class='spanclass'> ***</span>" ) ); });$("input").mouseout( function() { $( this ).parent().find(".spanclass").remove(); }); </script> </body></html>
时间: 2024-10-29 05:33:21