Onload函数不起作用

时间:2017-01-29 22:23:56

标签: javascript jquery

我尝试了几种方法来运行onload函数,比如

$(function(){
   // DOM Ready - do your stuff 
});


document.addEventListener('DOMContentLoaded', function() {
   // ...
});

jQuery.noConflict();
(function($) {
  $(function() {
   // by passing the $ you can code using the $ alias for jQuery
   // ...
  });
})(jQuery);

但是一旦我加载我的网站,在源代码上它无法正常工作,我正在运行以下代码

$(document).ready(function() {


$("input[type='password']").after('<div class="g-recaptcha" data-sitekey="##############"></div>');
});

在源代码中,它看起来像这样

<script type="text/javascript">
$(document).ready(function() );
</script>

Chrome控制台 enter image description here

HTML: enter image description here 我不知道为什么它不起作用。

由于

0 个答案:

没有答案