0
因爲我可以讓我的文本框顯示內容爲<a>
?帶鏈接的文本框
items: [{
xtype: 'textfield',
value: '<a href="www.google.com"> www.google.com </a>' <--
}]
因爲我可以讓我的文本框顯示內容爲<a>
?帶鏈接的文本框
items: [{
xtype: 'textfield',
value: '<a href="www.google.com"> www.google.com </a>' <--
}]
不,你不能用textfield或textarea做到這一點。如果你只想要的鏈接,下面的工作:
fieldLabel: 'Attention',
html: '<a href="http://google.com">xxxxxxxxxxx</a>',
使用純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
Pl輕鬆澄清你的問題。 – user113716 2010-10-04 17:27:15
我不明白這個問題。你希望你的文本輸入是可點擊的嗎,就好像它是一個''標籤?這似乎很有問題。 – Pointy 2010-10-04 17:27:17