Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下面的代码在初始化时过滤表以匹配“搜索...”这对我没有用。
$(document).ready(function(){ $('.table').dataTable({ "oSearch": {"sSearch": "Search for..."}); });
我想要的是“搜索...”出现在搜索框中,而不是在页面加载时初始化搜索参数。当用户将焦点放在搜索框上时,字符串消失,用户可以开始输入。有任何想法吗?
您可以为搜索框指定一个值,例如“搜索”,然后使用 jquery 使用您喜欢的 onfocus 或模糊来清除它。当有人“关注”框时清除该值。