使用jquery来回显文本框中的值

时间:2013-01-08 01:28:53

标签: php jquery

我试图在填写文本框后回显该值。

<input name="cron" type="textbox" placeholder=" Please insert a valid command in cron time format" class="required" />

此文本框的值将需要进入我的cron_parser函数,并将使用$ next_time回显

$cron_parser = new cron_parser($cron);
$next_time = $cron_parser->next_runtime();

基本上在填写文本框之后,我希望在屏幕上显示以下结果,并在文本框被更改时更新。

<div class="alert success">
<span class="icon"></span><strong>Is this correct?</strong>
Your backup will run next at <?php echo $next_time ?>
</div>

1 个答案:

答案 0 :(得分:0)

如果我理解你的问题,要在文本框中检索值,你可以使用如下的jQuery

val = $('input[value="cron"]').val();

你不能只是echo在客户端的东西(在页面加载之后)而不是alert(val);但是如果真的想将值传递给服务器端(PHP端) )你可以使用AJAX

Client-side scripting

Server-side scripting

Difference