-3

这是我的 index.php

<html>
<head>
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript" src="ajax.js"></script>
    <script>
        $("input").attr("disabled", true);
    </script>
</head>
    <style>
        #click{
        background-color:black;
        color:white;
        width:200px;
        }

        #content{
        background-color:black;
        color:white;
        width:200px;
        }
    </style>
    <body>
        <div id="click" style="cursor:pointer;">
            <a onclick="sendRequest('content.php','','content')">click</a>
        </div>
        <br>
        <div id="content">
            this is content
        </div>
    </body>

这是我的 content.php

<input type="text" />

这是我的 ajax.js http://tny.cz/cb20dc87

我想禁用 content.php 中的输入,有人可以告诉我该怎么做吗?

4

2 回答 2

0

我不知道你的sendRequest()功能,但这里是你如何使用标准 jQuery:

$('#content').load('content.php', function() {
    $("#content input").attr("disabled", true);
});

回调函数在 AJAX 调用完成后运行。大概您ajax.js提供了类似的功能。

于 2013-10-05T00:40:34.960 回答
0

将您的 content.php 更改为

<input type="text" disabled />
于 2013-10-05T00:36:16.490 回答