Custom Query (13852 matches)
Results (16 - 18 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#11595 | invalid | the filter of contents() can't get correct nodes | ||
Description |
example: html: <p>Hello <a href="http://ejohn.org/">John</a>, how are you doing?</p> jquery: $("p").contents().not("[nodeType=1]").wrap("<b/>"); then, the result should be: <p><b>Hello</b> <a href="http://ejohn.org/">John</a>, <b>how are you doing?</b></p> but in version 1.7.2, i get the result: <p>Hello <b><a href="http://ejohn.org/">John</a></b>, how are you doing?</p> |
|||
#14437 | duplicate | jq1.10.2 click点击的问题 | ||
Description |
我不知道怎么上传图片.而且我的英文真的很差,所以只能复制到这里了 html代码: <legend>个人基本信息</legend>
js代码部分 $(document).ready(function() {
}); 我希望他可以在点击的时候全选,再点击则全不选,但是情况是第一次点击全选,第二次点击全不选,都很正常,但是在以后的点击里,则都是全不选的状态。 |
|||
#7713 | worksforme | .template parameters not evaluated in firefox | ||
Description |
Take an example part of the template <a href="${www}" class='link' rel='external'>${www}</a> In FF 3.6.12 it renders as (href part is not replaced with actual link) <a href="$%7Bwww%7D" class='link' rel='external'>some.site.com</a> While in Chrome it works OK <a href="some.site.com" class='link' rel='external'>some.site.com</a> However in similar situation (where template var is tag parameter) works OK in both browsers: <input name='title' id='title' value='${title}'/> <input name='title' id='title' value='Some title'/> |