gpt4 book ai didi

javascript - 如何在此代码中显示 php 代码?

转载 作者:行者123 更新时间:2023-11-28 05:15:26 24 4
gpt4 key购买 nike

我有一个问题,我可以发布到我的表单,但我不能发布下拉值。

我将使用下拉列表选择一个值,然后我想将这些值与表单一起发送。它发布但始终发布此 454354325 值。如何使用选定的下拉值发布?

终于!好的,我解决了所有问题,除了在下拉值中显示 php 代码。

如何在下拉值之间显示以下 php 代码?

     function btn(container, btnElem) {

// Launch Dialog
bootbox.dialog({
message: '<div class="container-fluid">' +
'<div class="col-md-12">' +
'<form class="form-horizontal"> ' +
'<div class="form-group"> ' +
'<label for="sel1">Select list (select one):</label>'+
'<select class="form-control" name="sel1" value="" id="sel1">'+
'<option value="<?php include "test.php" ;?>"> Test</option>'+
'<option value="<?php include "test2.php"; ?>">Test2</option>'+
'</select>'+
'</form> </div> </div></div>',
title: "Please selec a value",
buttons:{
success: {
label: "Select a Value",
className: "btn-success",
// Main Callback: takes the youTube URL and finds the ID, then returns the embed code
callback: function(){
var html="",
$a = document.getElementById("sel1").value,
html= $a;

// Add Back to Gridmanger, and wrap in editable region
gm.addEditableAreaClick(container, btnElem, html);
}
}
}
});

}

最佳答案

您的解决方案中的 Html 中缺少双逗号 (")。请在 bootbox.dialog 函数中找到它并使用此 html

 <option value="TEST-VALUE"> Test</option>

而不是这个

<option value=TEST-VALUE"> Test</option>

关于javascript - 如何在此代码中显示 php 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39343586/

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