不会用jquery就不要这么义愤填膺的fuck它…
$("#formID") 这个返回的是一个类似于数组的jquery对象,包含了很多好用的方法
如果你想要的是那个DOM元素,可以 $("#formID")[0]来获得那个元素
或者如果你只是想要那个form的name值,需要:
$("#formID").attr("name")
好歹看完jquery教程再来喷。。喷之前用firebug多试试看你的代码。。
【 在 dhcn (小石|Dipolar) 的大作中提到: 】
: 标 题: jQuery的id选择器好像对form元素不起作用
: 发信站: 水木社区 (Fri Jul 17 17:23:23 2009), 站内
:
: 版本:1.3.2
: 测试代码(已删除服务器端代码),alert id ,name,action 都是undifined.看来还得用
: 一下getElementById了。
: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
: <html>
: <head>
:
: <title>My JSP 'MyJsp.jsp' starting page</title>
:
: <meta http-equiv="pragma" content="no-cache">
: <meta http-equiv="cache-control" content="no-cache">
: <meta http-equiv="expires" content="0">
: <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
: <meta http-equiv="description" content="This is my page">
: <!--
: <link rel="stylesheet" type="text/css" href="styles.css">
:
: -->
: <script type="text/javascript"
: src="/CMSWeb/common/js/jquery.js"></script>
: </head>
: <script type="text/javascript">
: $(document).ready(function(){
: //alert("xxxx");
: alert($("#fuckjq").name);
: });
: </script>
:
: <body>
:
:
: <br/>
:
: <form action="sd" id="fuckjq" name="fuckjq">
:
: </form>
: </body>
: </html>
:
: --
: 我道兄弟,这妖精有弟兄三个,这般义气;我弟兄也是三个,就没些义气?
:
:
:
: ※ 修改:·dhcn 于 Jul 17 17:24:22 2009 修改本文·[FROM: 124.42.13.*]
: ※ 来源:·水木社区
http://newsmth.net·[FROM: 124.42.13.*]
--
修改:dhcn FROM 124.42.13.*
FROM 61.135.255.*