我要问的是
我在<p>
例如。 <p>Hello</p>
现在我想知道有没有办法在PHP变量<p>
$getPara
内的值
(在会话变量或正常变量或全局变量中)
这样当我写<strong><?php echo $getPara; ?></strong>
时,它会打印 Hello
答案 0 :(得分:1)
不,你不能。
浏览器会将所有表单字段(input
,select
和textarea
)提交给服务器,但不会发送任何其他数据。
您需要使用Javascript。
答案 1 :(得分:0)
您可以查找具有.includeMe
作为类名的任何元素,并为其创建表单元素。下次发送表单时,这些项目也将作为值发送:
<p class="includeMe" id="state">Georgia</p>
-
$(function(){
// Everything with class 'includeMe'
$(".includeMe").each(function(){
var id = $(this).attr("id"),
text = $(this).text(),
elem = $("<input type='hidden'/>").attr("id", id).val(text);
// Add to form
$("form").append(elem);
});
});
答案 2 :(得分:0)
如果问题出在具体的输入上,那么你可以使用
<textarea name="some_name_to_use_in_php">hello</textarea>