0

我正在为 ASP.Net 网站开发一些基本的表单验证样式。我需要选择所有可见的 span 元素,并将 css 样式添加到另一个元素。(只是为了表明哪些输入字段无效。)

下面的代码在 FF 和 Safari 中就像一个魅力,但在 IE 中失败了。我已将问题缩小到 :visible 选择器。这是jQuery代码。

重要说明:生产站点正在运行 jQuery 1.3.1 在 1.3.2发行说明中对 :visible 选择器进行了更改

$('span.inputError:visible').each(function() {
            $(this).parent().parent().prev('td').children('label').children('span').css('color','red');
        });

这是它的渲染 HTML:

<table width="100%" cellspacing="0" cellpadding="3" border="0">
            <tbody>
            <tr>
                <td valign="top" style="text-align: right;" class="address_labels">
                    <label><span>*</span> First Name: </label>
                </td>
                <td>
                    <span id="ctl00_CMain_txtFirstName_wrapper"><input type="text" style="width: 190px;" invalidstyle="inputError" class="radEnabledCss Input" name="ctl00_CMain_txtFirstName_text" id="ctl00_CMain_txtFirstName_text" size="20" value=" zdogg"><input type="text" value=" zdogg" style="border: 0pt none ; margin: -18px 0pt 0pt; padding: 0pt; overflow: hidden; visibility: hidden; width: 1px; height: 1px;" name="ctl00$CMain$txtFirstName" id="ctl00_CMain_txtFirstName"><input type="hidden" name="ctl00_CMain_txtFirstName_ClientState" id="ctl00_CMain_txtFirstName_ClientState" autocomplete="off"></span>
                    <div>
                            <span style="color: Red; display: none;" class="inputError" id="ctl00_CMain_valFirstName">First name is required</span>
                        </div>        
                </td>
            </tr>

        </tbody></table>
4

1 回答 1

0

我使用 jquery 1.2.6 将您的代码放在:http: //jsfiddle.net/BZRWF/1/上 ,它似乎可以工作(我添加了一个按钮来单击以实例化事件)。我在兼容模式下使用 IE8 进行了测试,没有任何问题。

我还在 1.3.2 和 1.4.2 中进行了测试,它在那里也可以正常工作。

于 2010-08-03T18:15:01.010 回答