本文主要是介绍jquery聚焦文本框,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>jquery聚焦文本框 - 计划 - 博客园</title><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<form action="http://www.google.com.hk" id="cse-search-box"><div><input type="hidden" name="cx" value="partner-pub-7740261255677392:7064996710" /><input type="hidden" name="ie" value="UTF-8" /><!--文本框--><input type="text" name="q" size="25" /><input type="submit" name="sa" value="搜索" /></div></form><script type="text/javascript">$(document).ready(function () {$("input[name='q']").focus();})</script>
</body>
</html>
这篇关于jquery聚焦文本框的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!