请帮我解决这个问题。我研究更多,但我无法解决问题。我有代码1:
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<script>
function needloadafterloadpage(){
$form = $('<form method="get" action="" id="form-cmtxxx"></form>');
$form.html('<textarea name="add_comment_text" title="Write a comment..." content="Write a comment..." placeholder="Write a comment..." class="textInput mentionsTextarea uiTextareaAutogrow uiTextareaNoResize UFIAddCommentInput DOMControl_placeholder" id="scriptBox26" />');
$('#wrappercontentpost').html($form);
}
</script>
<body>
<div id="wrappercontentpost"></div>
<script>
$('textarea').on('keydown',function(e){
alert("abc");
});
</script>
<script>
needloadafterloadpage();
</script>
</body>
在这种情况下,代码 jquery 不起作用。我想在 10 秒后将表单附加到 div 。你有什么方法可以重新加载 Jquery。非常感谢您的支持