PHP结果显示在文本框onClick中

时间:2011-07-08 18:05:23

标签: php

我需要得到结果,其中当前按钮点击的PHP生成的ID显示在html文本字段...

有没有简单的方法可以做到这一点?

这是我要做的事情的链接http://dtech.id.lv/lat.php 当用户第一次来时,他没有代码,所以他点击获取代码。 我需要在点击后将php生成的代码粘贴到文本框中...

有人可以帮忙吗? 谢谢!

3 个答案:

答案 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;
});

live DEMO

答案 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>