我需要得到结果,其中当前按钮点击的PHP生成的ID显示在html文本字段...
有没有简单的方法可以做到这一点?
这是我要做的事情的链接http://dtech.id.lv/lat.php 当用户第一次来时,他没有代码,所以他点击获取代码。 我需要在点击后将php生成的代码粘贴到文本框中...
有人可以帮忙吗? 谢谢!
答案 0 :(得分:0)
假设你的html看起来像这样:
<button id="myPHPid">...</button>
<input type="text" id="idRecipient" />
然后
<button id="myPHPid" onclick="document.getElementById('idRecipient').value = this.id">...</button>
答案 1 :(得分:0)
试试这段代码
$('button').live('click',function() {
var $butVal= $(this).val();
alert($butVal);
$('input#buttonValue').val($butVal);
return false;
});
答案 2 :(得分:0)
单击按钮,文本字段中显示的内容。有时Javascript不是必需的。
<?php
$code = "";
if (isset($_POST['buttonId']))
{
$code = 'Some code here';
}
?>
<form method="post" >
<input name="textField" id="textField" type="text" value="<?php echo $code; ?>" />
<input name="buttonId" id="buttonId" type="submit" value="Submit" />
</form>