답변:
우선 input
요소에는 닫는 태그가 없어야합니다 ( http://www.w3.org/TR/html401/interact/forms.html#edef-INPUT). : End tag : forbidden).
두 번째로, 기능이 after()
아닌 이 필요합니다 append()
.
<input>
는 안됩니다.
해결 된 jQuery : 다른 요소 뒤에 요소 추가
<script>
$( "p" ).append( "<strong>Hello</strong>" );
</script>
또는
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery ( ".sidebar_cart" ) .append( "<a href='http://#'>Continue Shopping</a>" );
});
</script>