在div中显示不同的内容

时间:2014-07-19 14:42:15

标签: javascript html modal-dialog load

我想更改div的内容当用户点击链接时。为此,我尝试使用以下代码:

function openModal() {
    el = document.getElementById("modal");
    el.style.visibility = "visible";
}    

function showContent(id) {
    openModal();
    $("#modal").load("modal/id.php");
    return false;
}    

但是,它不会将"modal/id.php"更改为"modal/something.php",而是在模式目录中打开名为id.php的文件。我怎么能改变它?

2 个答案:

答案 0 :(得分:1)

不确定您的问题是什么。也许这就是答案。

  1. PHP

        echo "This other text is inside a PHP script";
    
  2. HTML

  3. enter image description here

答案 1 :(得分:0)

请提供其余代码。听起来这可能只是一个身份证监督。