728x90 반응형 SMALL JavaScript10 [.net] mvc 웹 프로젝트(5) CRUD 페이지 StandardInfo1 페이지 구현 @model List @{ Layout = null; } @inject ExWebServices.Interfaces.IButtonProvider ButtonProvider @{ var pageName = "StandardInfo1"; var buttons = ButtonProvider.GetButtons(pageName).ToList(); // 기본 기능 버튼 비활성화 var excelButton = buttons.FirstOrDefault(b => b.Id == "btnExcel"); if (excelButton != null) { excelButton.Used = false; .. 2024. 6. 27. [javascript] 좌표값 알아내기 클릭한 좌표값 알아내기 function showCoordinates(e) { var coordinatesDiv = document.getElementById('coordinates'); var x = e.offsetX; var y = e.offsetY; coordinatesDiv.innerHTML = 'X: ' + x + ', Y: ' + y; coordinatesDiv.style.display = 'block';} 2024. 4. 30. 이전 1 2 3 다음 728x90 반응형 LIST