0
我正在用html5寫移動頁面,並且有一個需要屬性的輸入元素。如果沒有輸入,錯誤提示會顯示。但它出現在chrome v30的輸入中心點。所以我的quetion是如何將錯誤提示移到輸入的開頭?html5輸入錯誤提示
<input type='text' required='required' data-tips='why here?why not start?'/>
<script type='text/javascript'>
var i = document.getElementsTagName('input')[0];
i.setCustomValidity(i.getAttribute('data-tips'));
</script>
請顯示一些代碼 – BeNdErR