在一个php文件的ajax调用后,我想采取反馈结果的一部分来添加额外的javascript代码。 php文件返回代码。现在我不知道如何以正确的方式包含它?
为了更好地理解
php文件返回$ result [script] ='alert(“my functions”);'
控制ajax调用的文件看起来像那样
url: fileurl,
type: "post",
data: formDetails.serialize(),
error: function(jqXHR, textStatus, errorThrown)
{
displayAjaxMessage("Sorry, there was an error");
},
success: function (result) {
var res = $.parseJSON(result);
//Here should be the scriptcode from the variable
$res.script;
}
我想这样做,因为我认为我必须重新声明一些功能,例如bootstrap-switch,datepicker等插件。
提交表单后他们不会工作,所以我想我必须再次参与JS-Code?
答案 0 :(得分:0)
用
1.0
有效。