通过java脚本显示文件

时间:2016-02-09 11:54:23

标签: javascript php html css

有没有办法在点击事件中使用javacript在html中显示具有.php extn的文件作为应该在不同点击上显示的任何文件?

1 个答案:

答案 0 :(得分:0)

你可以通过jquery来做到这一点,这是一个相当简单的方法

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("#div1").load("your file url");
    });
});
</script>
</head>
<body>

<div id="div1"></div>

<button>load file</button>

</body>
</html>