如果这被检查,jquery在IE 9中不起作用?

前端之家收集整理的这篇文章主要介绍了如果这被检查,jquery在IE 9中不起作用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这里使用 jquery复选框单击功能,如果我单击IE 9中的复选框if($(this).is(‘:checked’))它不会抛出警报消息..但它在IE 10中工作,Firefox和铬
  1. if (isChildAvail == "true")
  2. {
  3. $(this).change(function() {
  4. if ($(this).is(':checked')) {
  5. alert("test");
  6. $(this).parent().parent().append('<div id="divedit" class="editdiv"><p id="p_childlabel" class="childlabel">Children : ' + ChilAvailCount + ' </P><a class="childlabeledit">Edit</a></div>');
  7. $('.editdiv a').click(function() {
  8. $(this).parent().parent().append($("#divchildcontrol"));
  9. EditForPullups();
  10. });
  11. }
  12. }

有什么建议??

编辑:

  1. $(this).change(function() {

问题是改变功能而不是这个(如果($(this).is(‘:checked’))

EDIT(2):

  1. var strCheck = "";
  2. $('.consumer-communication-checkBox').each(function () {
  3.  
  4. strCheck = $(this).parent().text();
  5.  
  6.  
  7. if (strCheck.toLowerCase().indexOf("hugg") >= 0) {
  8.  
  9. //scenario without child
  10. if (isChildAvail == "false") {
  11. jQuery(':checkBox').change(function () {
  12. if ($(this).prop('checked') === true) {
  13. $(this).parent().parent().append($("#divchildcontrol"));
  14. IsChildcontrolwithH = "1";
  15. IsChildcontrolwithG = "0";
  16. IsChildcontrolwithP = "0";
  17. } else {
  18. if (IsChildcontrolwithH == "1") {
  19. $("#divpersonalrightheader").append($("#divchildcontrol"));
  20. }
  21. }
  22. });
  23. }
  24. //scenario with child
  25. else {
  26. if ($(this).prop('checked') === true) {
  27. //Set SubscribedCode
  28. SubscribedCode = "H";
  29. $(this).parent().parent().append('<div id="divedit" class="editdiv"><p id="p_childlabel" class="childlabel">Children : ' + ChilAvailCount + ' </P><a class="childlabeledit">Edit</a></div>');
  30. $('.editdiv a').click(function () {
  31. $(this).parent().parent().append($("#divchildcontrol"));
  32. EditForH();
  33. });
  34. }
  35.  
  36. jQuery(':checkBox').change(function () {
  37. if ($(this).prop('checked') === true) {
  38. $(this).parent().parent().append('<div id="divedit" class="editdiv"><p id="p_childlabel" class="childlabel">Children : ' + ChilAvailCount + ' </P><a class="childlabeledit">Edit</a></div>');
  39. $('.editdiv a').click(function () {
  40. $(this).parent().parent().append($("#divchildcontrol"));
  41. EditForH();
  42. });
  43. } else {
  44. $("#divedit").remove();
  45. if (IsChildcontrolwithH == "1") {
  46. $("#divpersonalrightheader").append($("#divchildcontrol"));
  47. IsChildcontrolwithH = "0";
  48. IsChildcontrolwithG = "0";
  49. IsChildcontrolwithP = "0";
  50. }
  51. }
  52.  
  53. });
  54. }
  55. }

编辑(3):Html内容

  1. <div class="consumer-checkBox-wrap checked">
  2. <label class="consumer-communication-label checkBox" for="communication_11">
  3. <input name="communication_11" class="consumer-communication-checkBox checkBox" id="communication_11"
  4. type="checkBox" checked="checked" value="true"><img src="Images/PMURP_logos/hugg.jpg">
  5. s
  6. <p>
  7. Please send me communications,savings,and special offers from hugg® Communications
  8. </p>
  9. </label>
  10. <input name="communication_11" type="hidden" value="false"><a href="http://www.hugg.com/email/12162011/SampleNewsletter.html"
  11. target="_blank"><img src="../kcsso/images/Newsletter/hugg.jpg"></a>
  12. </div>
  13. <div class="consumer-checkBox-wrap">
  14. <label class="consumer-communication-label checkBox" for="communication_13">
  15. <input name="communication_13" class="consumer-communication-checkBox checkBox" id="communication_13"
  16. type="checkBox" value="true"><img src="Images/PMURP_logos/scott.jpg">
  17.  
  18. <p>
  19. Please send me communications,and special offers from scott® Communications</p>
  20. </label>
  21. <input name="communication_13" type="hidden" value="false"><a href="http://www.scott.com/email/11042011/samplenewsletter.html"
  22. target="_blank"><img src="../kcsso/images/Newsletter/scott.jpg"></a>
  23. </div>

解决方法

您发布的代码最后缺少一些结束括号,我不确定您是否只是没有复制/粘贴所有代码,或者如果它丢失并且破坏了您的代码

这是您发布的内容(在整理缩进后):

  1. if (isChildAvail == "true") {
  2. $(this).change(function () {
  3. if ($(this).is(':checked')) {
  4. alert("test");
  5. $(this).parent().parent().append('<div id="divedit" class="editdiv"><p id="p_childlabel" class="childlabel">Children : ' + ChilAvailCount + ' </P><a class="childlabeledit">Edit</a></div>');
  6. $('.editdiv a').click(function () {
  7. $(this).parent().parent().append($("#divchildcontrol"));
  8. EditForPullups();
  9. });
  10. }
  11. }

它缺少更改事件处理程序的结束);以及if块的结束}:

  1. if (isChildAvail == "true") {
  2. $(this).change(function () {
  3. if ($(this).is(':checked')) {
  4. alert("test");
  5. $(this).parent().parent().append('<div id="divedit" class="editdiv"><p id="p_childlabel" class="childlabel">Children : ' + ChilAvailCount + ' </P><a class="childlabeledit">Edit</a></div>');
  6. $('.editdiv a').click(function () {
  7. $(this).parent().parent().append($("#divchildcontrol"));
  8. EditForPullups();
  9. });
  10. }
  11. });
  12. }

这个(简化的)示例在IE9中适用于我:
http://jsfiddle.net/rT2dT/1/

  1. $(':checkBox').change(function () {
  2. if ($(this).is(':checked')) {
  3. alert("test");
  4. }
  5. });

或者,试试吧

  1. $(':checkBox').change(function () {
  2. if ($(this).prop('checked') === true) {
  3. alert("test");
  4. }
  5. });

您使用的是哪个jQuery版本?

编辑:
跟进上面的第二次编辑:

我看到你在每个循环中附加事件处理程序

  1. $('.consumer-communication-checkBox').each(function () {

我假设该选择器将在您页面上的各种复选框上.在每个外观里面,你都附加了更改处理程序:

  1. $(':checkBox').change(...

此选择器将为您提供整个页面上的所有复选框,而不仅仅是范围中的复选框.在每个循环的每次迭代中,您将其中一个事件处理程序附加到页面上的每个复选框.在不知道你的HTML标记的情况下,我无法告诉你究竟发生了什么,但这就是为什么一切都按照预期在孤立的例子(如JSFiddle.net)中工作并在上下文中返回随机结果的原因.

猜你在找的jQuery相关文章