我试图弄清楚如何在 html a 标签的 href 中动态显示链接。我目前有以下代码在我键入时显示值,但我希望此代码在 a 标签 href 中显示点击 url。
有人可以帮忙吗?
HTML表单代码:
<input type="text" id="testTextareadestinationurl" autocomplete="off" size="57" maxlength="2500" name="destinationurl" class="required"/>
<span id='UrlDestinationurl'><?php echo $destinationurl;?></span>
<a href="" target="_blank"><img src=""></a>
javascript代码:
var testTextareadestinationurl = document.getElementById('testTextareadestinationurl');
testTextareadestinationurl.onkeydown = updateUrlDestinationurl;
testTextareadestinationurl.onkeyup = updateUrlDestinationurl;
testTextareadestinationurl.onkeypress = updateUrlDestinationurl;
function updateUrlDestinationurl() {
document.getElementById('UrlDestinationurl').innerHTML = this.value || "";
}
function display(msg) {
var p = document.createElement('p');
p.innerHTML = msg;
document.body.appendChild(p);
}