jquery模糊匹配
<select class="1234FFFF" />
<select class="5t3rFFFF" />
<select class="d3d3FFFF" />
<select class="d3d3SSSS" />
$("select[class]").each(function(){
var class = $(this).attr("class");
if(/FFFF$/.test(class)){
//这⾥放要处理的代码
}
});
******************************************************************************************************************************************
[属性名称] 匹配包含给定属性的元素
[att=value] 匹配包含给定属性的元素 (⼤⼩写区分)
jquery的attr属性[att*=value] 模糊匹配
[att!=value] 不能是这个值
[att$=value] 结尾是这个值
[att^=value] 开头是这个值
[att1][att2][att3]... 匹配多个属性条件中的⼀个
<script language="javascript">
$(function(){
alert($('#dialog[title*=Basic]').attr('class'));
answer:text edit-server-1 ui-draggable
alert($('#dialog[title*=B]').attr('class').match(/edit\-server\-[0-9]+/));
answer:edit-server-1
alert($('#dialog[title*=B]').attr('class').match(/edit\-server\-[0-9]+/).match(/\d+/g));
answer:1
})
</script>
</head>
<body>
<div id="dialog" title="Basic dialog" class="text edit-server-1 ui-draggable">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
</body>
</html>
$("input[class*=order-<?php echo $_productColor['sizes'][$i]['size'];?>]").val($(this).val());
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论