因为我可以让我的文本字段显示内容为<a>
?
items: [{
xtype: 'textfield',
value: '<a href="www.google.com"> www.google.com </a>' <--
}]
答案 0 :(得分:0)
不,你不能用textfield或textarea做到这一点。如果您只想要链接,则以下工作:
fieldLabel: 'Attention',
html: '<a href="http://google.com">xxxxxxxxxxx</a>',
答案 1 :(得分:0)
使用纯JavaScript,您可以执行以下操作:
HTML
<label for="txt">Text</label>
<input id="txt" type="text" onclick="url=document.getElementById('txt').value;if (url != ''){window.location=url;}"/>
CSS
input#txt {
color: blue;
text-decoration: underline;
}
找到它here