示例:hello world
我想在一个段落中显示上面没有分手
$(document).on('change', '#category', editfunction);
function editfunction() {
var value = $(this).val();
console.log(value);
// AJAX...
}
以这种方式。将有3个休息
哪一段会影响休息?
答案 0 :(得分:1)
PHPWord addTextRun method's description
使用textrun,您可以在一个段落中添加文本和文本扩展名。
$textrun = $section->addTextRun();
$textrun->addText("hello");
$textrun->addImage('image URL');
//if you want to seperate the text
//$textrun->addTextBreak();
$textrun->addText("hello");