-2

我有一个包含 html 内容和 php 内容的 php 文件。

<body>
    <a href="settings.php" onclick="edit_enable()">
        Edit section
    </a>

    <div class="container" hidden name="Edit">
        <section class="ac-container">
            <p>This is the Edit Section</p>
        </section>
    </div>
</body>

我有一个包含函数 edit_enable() 的 php 段

<?php
    function edit_enable() {
    }
?>

我希望此函数能够访问命名的“编辑”并更改可见性以及其中的其他属性。

//更新我只是简单地添加了一个示例,我的主要目的是访问/更改 html 内容,所有这些都使用 php 代码。

4

1 回答 1

1

您也误用了一些 html 属性。您已经获取了一些表单属性值并将它们放在一个<div. 这是不支持的。

我已经重写了你的 html,把它hidden放在一个有意义的style属性中。并将Name属性重命名为广泛使用的id属性。然后我放置了一个javascript函数来切换显示div

<body>
<a href="settings.php" onclick="edit_enable();">
    Edit section
</a>

<div class="container" style="display:none;" id="Edit">
    <section class="ac-container">
        <p>This is the Edit Section</p>
    </section>
</div>

<script>
    function edit_enable() {
        var div = document.getElementById('Edit');
        div.style.display = (div.style.display == 'block') ? '' : 'block';
        return false;
    }
</script>

于 2013-08-28T04:36:17.253 回答