我通过调用 x.php 在我的网页运行时加载了新数据,我检索了动态生成的 html 和 javascript。但是javascripts函数没有运行。
索引页面中的代码,调用php页面:
$.post('x.php', {
id: num
}, function (output) {
document.getElementById('view').innerHTML = output;
});
示例 html
<div id='view2'></div>
输出js函数示例:
<script type="text/javascript">
function a(y, s) {
id + y / s
}
function v(d) {
document.getElementById('view2').innerHTML = d;
}
</script>
如何使输出数据中的新 JavaScript 函数与加载的早期 js 一起运行?其他功能将取决于这个新生成的功能