2011-02-02 97 views
0

我在設計IE8中的提交和取消按鈕時遇到了問題。
使用:Jeditable按鈕造型問題

.editableTable button[type="submit"] 
{ 
    background:url("../images/Ok-icon.png") no-repeat 0 0; 
    border:none; 
} 

.editableTable button[type="cancel"],.editableTable button[type="button"] 
{ 
    background:url("../images/Close-icon.png") no-repeat 0 0;  
    border:none; 
} 

我得到了我想要在FF和IE7,但在IE8按鈕類型爲提交兩個確定和取消按鈕,這樣我就得到了確定圖標兩個按鈕。我的其他選項是按鈕:nth-​​child()但在IE中不起作用。所以我卡住了,真的很欣賞任何指針...

謝謝!

問候斯文

+1

我讀作 「絕地表」 你的問題:) – Dutchie432 2011-02-02 22:09:18

+0

願力量與你同在... :) – Zwempha 2011-02-02 22:20:36

回答

0

您可能忽略一個Doctype聲明。嘗試在<html>開始之前在頁面頂部添加<!doctype html>,看看會發生什麼。 IE瀏覽器有時不理解type="submit",但理解type="Submit",反之亦然。試試這些。

除此之外,在SO上也有幾次類似的問題。

其中之一就是在這裏 Css attribute selector for input type="button" not working on IE7

--edit

哦。在IE8中也發現了關於選擇器問題的這個問題。 Attribute selectors, JavaScript and IE8