Home > Backend Development > PHP Tutorial > PHP与文本域

PHP与文本域

WBOY
Release: 2016-06-23 14:10:18
Original
1968 people have browsed it

在同一个PHP文件中,有如下代码

<input name="key" type="text" id="key" value=""/><input name="button" type="button" value="Calculate" />
Copy after login

在文本域里输入内容后,怎样把内容赋值给$dsth,
<?php$dsth="文本域里的内容"echo $dsth?>
Copy after login

点击按钮执行此代码


回复讨论(解决方案)


是普通按钮不会产生提交动作,况且也没有看到表单
那么你就需要使用 js 完成这个任务了,用 php 是不能完成的


是普通按钮不会产生提交动作,况且也没有看到表单
那么你就需要使用 js 完成这个任务了,用 php 是不能完成的
使用表单是不是要跳转到另一个页面才能完成?

表单有 target 属性,你可将其指向 iframe 就不会发生跳转了

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template