프론트 엔드 코딩시 여러가지 간단한 팁들

2015-02-11 09:44:07에 작성됨 | 웹 디자인

1. jQueryUI Spinner의 값이 폼으로 전달되지 않을 때(Form을 submit 하였을 때 받는 페이지에서 값을 얻어오지 못 할때)

-> spinner가 포함된 form이 table 안에 있는지 확인 할 것.

<table>

<form>

<input type=”text” class=”spinner” name=”spinner” />

</form>

</table>

이 아니라

<form>

<table>

<input type=”text” class=”spinner” name=”spinner” />

</table>

</form>

2. 버튼에 CSS를 적용했는데 아이폰에서 버튼 색깔외에 아무것도 바뀌지 않을 때

-> 해당 버튼 CSS에 -webkit-appearance: none; 를 추가해볼 것.

시간 나는대로 추가 예정

 

Leave a Reply

Your email address will not be published. Required fields are marked *