Ext.Button如何添加背景图片和设置样式 10
2个回答
展开全部
1.先写个样式
<style type='text/css'>
.btn{backgroud-Image:url("image/head.gif")}
</style>
<script>
Ext.onReady(function(){
var button = new Ext.Button({
title:"单击我",
type:"button",
applyTo:"ddd",//映射到html节点
cls:"btn", //此处的cls就是就是调用外部类样式的属性
width:"300px",
height:"300px",
handler:function(){
Ext.MessageBox.alert("你好");
}
})
});
</script>
<body>
<div id="ddd"></div>//在body中一定要有这个id
</body>
<style type='text/css'>
.btn{backgroud-Image:url("image/head.gif")}
</style>
<script>
Ext.onReady(function(){
var button = new Ext.Button({
title:"单击我",
type:"button",
applyTo:"ddd",//映射到html节点
cls:"btn", //此处的cls就是就是调用外部类样式的属性
width:"300px",
height:"300px",
handler:function(){
Ext.MessageBox.alert("你好");
}
})
});
</script>
<body>
<div id="ddd"></div>//在body中一定要有这个id
</body>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询