HTML을 사용하여 텍스트가있는 링크를 만들고 사용자가 특정 URL을 클릭 할 때 생성하려고합니다. 나는 자바 스크립트에 새로운! 여기JS 클릭 기능 새 창에서 열기 URL
내 코드
<a class="dt-button add_new_table_entry DTTT_button DTTT_button_new" tabindex="0" aria-controls="table_1" href="#">
<span>Add new</span>
</a>
내 스크립트
$("dt-button add_new_table_entry DTTT_button DTTT_button_new").click(function() {
window.location="http://project.co/add-new/";
});
UPDATE 내가
let classic = document.getElementsByClassName('add_new DTTT_button DTTT_button_new');
for (var i=0; i < classic.length; i++) {
classic[i].addEventListener("click", clickfunc, false);
}
function.clickfunc(){
document.location.href="http://google.com";
}
하지만 오류가 예기치 않은 토큰을주는 내 스크립트를 만들 수있다;
@Ibrahim Quraisy, 내가 업데이트 한 내 대답을 추가 재
위해에서는 window.location을 사용하는 일이됩니다. 한번 봐주세요. – Mamun