這裏是我的jqmodal表單代碼:我怎樣才能改變我的按鍵的字體大小在我的模式窗體對話框的jQuery
$("#dialog-form").dialog({
autoOpen: false, //Shows dialog
height: 300,
width: 220,
modal: true,
fontSize: "100%",
buttons: {
"Save": function() {
$(this).dialog('close');
alert("Customer successfully added!");
$.post('insertsup.php', $('#customer').serialize(), function(result){
}).css("font-size", "62.5%");
},
"Cancel": function()
{
$(this).dialog("close");
}
}
如何編輯我的字體大小,以62.5%的jqmodal包括按鈕文字大小?請幫助我..
你可以創建一個你試過的http://jsfiddle.net版本嗎? –
等一下..生病只是更新我的帖子.. – user3117337
請幫我在這裏.. :( – user3117337