0

我无法checkbox文档中获取选择器。知道为什么吗?$('checkbox').size()始终为零。

网页

<html>    
    <head>
        <title>Geb</title>
    </head>    
    <body>
        <input type="checkbox" name="pet" value="dogs" checked="true" />    
    </body>    
</html>

Groovy 代码

Browser.drive {
    go "file:///home/zoran/page.html"
    println $('checkbox').size() // is always zero
}
4

3 回答 3

1

要使用 jQuery 选择器选择页面上的所有复选框,您需要使用:

$('input[type=checkbox]').size()
于 2013-09-17T11:23:19.997 回答
0

选择所有复选框使用 jquery 选择器作为

$('input:checkbox').size()
于 2013-09-17T11:28:52.950 回答
0

只需为您的复选框提供 id

<input type="checkbox" id="chkPet" name="pet" value="dogs" checked="true" /> 

接着

$("#chkPet")
于 2013-09-17T11:30:17.200 回答