extjs box控件放置图片后 点击事件
{xtype:'box',//或者xtype:'component',width:455,//图片宽度height:330,//图片高度autoEl:{tag:'img'...
{
xtype: 'box', //或者xtype: 'component',
width: 455, //图片宽度
height: 330 , //图片高度
autoEl: {
tag: 'img', //指定为img标签
src: 'url' //指定url路径
}
}
网上找到了这个解决extjs显示图片的问题,但现在想添加 点击这张图片后跳转页面 的事件,如何解决? 展开
xtype: 'box', //或者xtype: 'component',
width: 455, //图片宽度
height: 330 , //图片高度
autoEl: {
tag: 'img', //指定为img标签
src: 'url' //指定url路径
}
}
网上找到了这个解决extjs显示图片的问题,但现在想添加 点击这张图片后跳转页面 的事件,如何解决? 展开
1个回答
展开全部
ext3.4-
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>extjs3.4 demo2</title>
<link rel="stylesheet" href="../resources/css/ext-all.css">
<script src="../adapter/ext/ext-base.js"></script>
<script src="../ext-all.js"></script>
<script>
var clickHandler = function(){
// 设置跳转
alert(1);
location.href = '#';
}
Ext.onReady(function(){
new Ext.Panel({
title:'main',
width:600,
height:300,
items:{
xtype:'box',
width:200,
height:200,
autoEl:{
tag:'img',
src:'',
onclick:'clickHandler()'
}
},
renderTo:Ext.getBody()
});
});
</script>
</head>
<body>
</body>
</html>
ext4+
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Extjs 4.2 demo2</title>
<link rel="stylesheet" href="../resources/css/ext-all.css">
<script src="../bootstrap.js"></script>
<script>
Ext.onReady(function(){
new Ext.Panel({
title:'main',
width:600,
height:300,
listeners:{
el:{
click:function(){
// 设置跳转
alert(1);
location.href = '#';
}
}
},
items:{
xtype:'box',
width:200,
height:200,
autoEl:{
tag:'img',
src:'',
}
},
renderTo:Ext.getBody()
});
});
</script>
</head>
<body>
</body>
</html>
微测检测5.10
2023-05-10 广告
2023-05-10 广告
您好!建议咨 深圳市微测检测有限公司,已建立起十余个专业实验室,企业通过微测检测就可以获得一站式的测试与认 证解决方案;(EMC、RF、MFi、BQB、QI、USB、安全、锂电池、快充、汽车电子EMC、汽车手机互 联、语音通话质量),认证遇...
点击进入详情页
本回答由微测检测5.10提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询