1
Q
查找元素加載
A
回答
2
,你需要通過,如果你想事件處理動態地添加的元素上()使用委託的事件:
$(document).on("click", "#registerButton button",function() {
$('input, select').removeClass('genericInputError');
$('.statusMessage').text('').hide();
$('.ajaxLoading').show();
$('.g-recaptcha .rc-anchor-normal').addClass('recaptchaError');
});
+0
它的行爲與dom中的「#registerButton按鈕」相似。 –
相關問題
- 1. 查找元素
- 2. 查找元素
- 3. 查找元素
- 4. 查找元素
- 5. 查找元素
- 6. 查找元素
- 7. 重載在步驟查找元素
- 8. 如何查找加載子元素而不顯式聲明它的父元素?
- 9. 雖然未找到元素加載ajax
- 10. 查找特定DOM元素加載多長時間
- 11. 如何查找元素是否已使用JQuery加載
- 12. Selenium/Protractor在當前加載的頁面中查找元素嗎?
- 13. .map查找通過AJAX加載過的元素
- 14. JQuery無法在初始加載後在iFrame中查找元素
- 15. jquery查找元素
- 16. iMacro查找元素
- 17. 查找childrenparent元素
- 18. 查找span元素
- 19. 添加Rails nested_form查找元素
- 20. 查找元素,並添加到ArrayList的
- 21. 查找元素,並添加類(jQuery的)
- 22. 如何檢查元素是否加載
- 23. 檢查JavaScript - 查找元素 -
- 24. 引入nokogiri:查找和XML元素,然後添加子元素
- 25. jquery查找元素並向元素添加類
- 26. 查找元素與類名angularjs並添加類元素
- 27. XSLT查找表:從查找中用元素替換元素
- 28. jQuery - 按元素路徑查找元素
- 29. MongoDB:按數組元素查找元素
- 30. 如何查找元素中的元素
您的代碼將作爲您需要了,所以只要'button'單擊事件在'.g-recaptcha .rc-anchor-normal'元素添加到DOM後引發。 –