[HTML] IE 表單 Enter 的 Bug
ie 只有一個input box 不給submit 那就在補它一個hide 起來的input box
2009年1月1日 星期四
2008年10月17日 星期五
ie, clone,timeout,setTimeout
http://blog.roodo.com/jaceju/archives/7231115.html
$.browser.msie <= check browser type$(function () {//setTimeout 可以確保程式在 DOM 完全更新後,再執行下一步的動作。
$('#copy').click(function () {
var $checkedValues = $('input.test:checked').clone();
if ($.browser.msie) {
setTimeout(function () { $checkedValues.attr('checked', true); }, 0);
}
$('#target').html('').append($checkedValues);
setTimeout(function () {
// 其他可能會對處理到 checkbox 的動作
}, 0);
});
});
標籤:
clone.timeout,
ie,
setTimeout
2008年9月3日 星期三
2008年8月9日 星期六
IE bugs padding
http://i-designtw.blogspot.com/2008/07/ie-input-button-double-padding.html
http://cafefrenzy.com/css-double-padding-ie7-fix/
http://www.positioniseverything.net/explorer/doubled-margin.html
http://www.viget.com/inspire/styling-the-button-element-in-internet-explorer/
http://www.positioniseverything.net/explorer.html
http://jehiah.cz/archive/button-width-in-ie
IE padding bug
http://cafefrenzy.com/css-double-padding-ie7-fix/
http://www.positioniseverything.net/explorer/doubled-margin.html
http://www.viget.com/inspire/styling-the-button-element-in-internet-explorer/
http://www.positioniseverything.net/explorer.html
http://jehiah.cz/archive/button-width-in-ie
IE padding bug
訂閱:
文章 (Atom)