假设在一个文档中我有一个 div 和一个显示 div 的按钮:
<div id="dvExternal" style="display: none;">
</div>
<button type="button" id="btnShow">
<span>Show</span>
</button>
和一个命令它显示的jquery:
$("#btnShow").click(function(){
$("#dvExternal").css("display","block");
$("#dvExternal").load("whattheitsnotworking.php");
});
该页面包含 jquery 函数、php、iframe 等。
问题是当它加载到 div 上时,该页面上的 jquery 不起作用。
提前致谢 :)
我试图在 div 中加载的页面包含(例如):
<script type="text/javascript">
$(document).ready(function(e)){
$("#inputDate").val("<?php echo date("Y"); ?>");
});
</script>
此脚本无法加载或工作。