gpt4 book ai didi

colorbox - 如何在colorbox jquery上显示html内容

转载 作者:行者123 更新时间:2023-12-02 19:24:39 25 4
gpt4 key购买 nike

我想在 colobox jquery 上显示我的 html 内容。在这里,我使用 ajax 函数提交我的数据,但成功后函数会返回一些 html 页面。现在我想在 colorbox 上显示我的 html 内容。我怎样才能做到这一点.. 我的代码是这样的:

$('#submitButtonName').click(function(event) {
event.preventDefault();
alert("press");
var send=$("#ajaxadd").serialize();
alert(send);
$.ajax({
type:"POST",
url:"/patient_add",
data:send,
success: function(msg) {
$("#gg").html(msg);// here gg is the id which im try to retrieve from my html page. not getting exactly.
alert(msg);
//$(".display").colorbox({html:'<p>Hello</p>'});
}
});
$(".display").colorbox({html:send});

这是我的 html 文件。我希望我的患者姓名、uhid、年龄显示在彩盒上。

<body>
<div id="gg">
<form id="FormName11" action="/display" method="post" name="FormName11">
<table>
<tr><div align="center"><h2><b><u>Fortis-Medremind Patient Receipt</u></b><h2></div></tr>
</table>
<table>

<b>PatientName</b>: {{patientinfo_all.name}}
<br>
<b>UHid</b> : {{patientinfo_all.uhid}}
<br>
<b>Age</b> : {{patientinfo_all.age}}
<br>

</form>
</div>

提前致谢..

最佳答案

一种方法是用文本区域标记将其括起来。

例如

var response = '<textarea style="width:688px; height:458px">' + data + '</textarea>';
$.colorbox({title:'Response',width:'700px',height:'500px',html:response});

关于colorbox - 如何在colorbox jquery上显示html内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5374885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com