gpt4 book ai didi

javascript - 显示字段值上的 href 链接

转载 作者:行者123 更新时间:2023-11-27 23:27:49 25 4
gpt4 key购买 nike

我的应用程序有一个用于显示数据的表单,带有一个显示字段。该显示字段显示网站链接,值为 href 链接。

我正在努力正确配置 href。

你能帮我一下吗?

{
xtype: 'displayfield',
fieldLabel: 'Web/URL',
name: 'URL',
autoEl: {
tag: 'a',
href: '',
// href: '<a href="'+ this.value +'">'+ this.value +'</a>',
target: '_blank'
}
}

编辑:

fiddle :https://fiddle.sencha.com/#fiddle/13u0

最佳答案

最好使用“click”监听器事件而不是使用 autoEl。您可以添加 fieldCls 配置以便为值设置样式。

items: [{ 
xtype: 'displayfield',
fieldLabel: 'Displayfield',
labelWidth: 100,
name: 'link',
value: 'http://stackoverflow.com',
fieldCls: 'style-for-url', // class for url
listeners: {
afterrender: function(view) {
// Listener for onclick
view.getEl().on('click', function() {
window.open(view.value);
})
}
}
}]

关于javascript - 显示字段值上的 href 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34814197/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com