jquery-mobile学习笔记-把过滤框中提示语提示换成中文

来源:互联网 发布:js history.back 1 编辑:程序博客网 时间:2024/06/04 20:02
<!DOCTYPE html> <html>  <head>   <title>今日订餐</title>   <meta name="viewport" content="width=device-width, initial-scale=1">   <link rel="stylesheet" href="jquery.mobile-1.1.1/jquery.mobile-1.1.1.min.css" />  <script src="jquery.mobile-1.1.1/jquery-1.8.1.min.js"></script>  <script src="jquery.mobile-1.1.1/jquery.mobile-1.1.1.min.js"></script></head> <body> <div data-role="page" id="main"><div data-role="header"><h2>今日订餐</h2></div><div data-role="content"><ul data-role="listview" data-inset="true" data-filter="true">   <li>好味佳</li>           <li>蒸饭仔</li>        </ul>  <div data-role="footer"><h1>xx公司 版权所有</h1></div> </div><!-- /page --></body><SCRIPT LANGUAGE="JavaScript"><!--$.mobile.listview.prototype.options.filterPlaceholder = "想查找,请点击...";//这样设置就可以了//--></SCRIPT></html>

原创粉丝点击