我们如何在 PHP 中以 html 格式获取 contentEditable 中存在的内容
例如,我有这段代码并想在 PHP 中的变量中获取它的值:
<div contentEditable="true"> type here
<img src="http://t2.gstatic.com/images?q=tbn:ANd9GcQCze-mfukcuvzKk7Ilj2zQ0CS6PbOkq7ZhRInnNd1Yz3TQzU4e&t=1" /></div>
因为我想将其用作电子邮件的 html 正文。
事实上,我想获取 contentEditable 的值并将其保存到一个变量中,然后将该变量用作我的电子邮件的正文。知道如何执行此任务。