如何在anchorTag点击html中显示文本框和按钮

时间:2016-01-06 06:29:31

标签: html anchor

在加载html时,它应该有一个锚标记。单击该锚标记。显示一个文本框和按钮。在文本框中输入一些值并单击该按钮应该将输入的值附加到锚标记(锚标记+值)

1 个答案:

答案 0 :(得分:1)

试试这个:

HTML: 将textboxbutton放到display:none

<a href="#" id="anchr" >Click here</a>
<input type="text" value="" id="txt" style="display:none;"/>
<input type="button" value="Button" id="btn" style="display:none;"/>

JS:

$(document).ready(function(){ 
$('#anchr').click(function(){  
$('#txt').show(); // show textbox
$('#btn').show(); //show button
});
$('#btn').click(function(){
$('#anchr').html($('#anchr').html() + $('#txt').val()); // Anchor tag HTML + Value of Textbox
});
});

工作Fiddle