0

我试过“.change”和“.live change”但没有成功。下面的代码是我从谷歌搜索示例请求中复制的众多代码之一。我相信我需要使用“实时”更改,因为在我的代码中我动态地创建了输入字段。

<!DOCTYPE html>
<html>
<head>
    <title>test change</title>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
</head>
<body>
    <input id='inurlprodcgs' type="url" name="urlprodcgs" autocomplete="off" required/>
</body>
    <script>
        if (typeof jQuery != 'undefined') {
            alert("jQuery library is loaded!");
        }else{
            alert("jQuery library is not found!");
        }
        $("input[type='url']").live('change', function(e) {
            alert("hide");
        });
    </script>
</html>

如您所见,我已经测试过是否加载了 jquery。

4

2 回答 2

4

因为 live 被删除(因为你正在使用 1.10)使用.on()

$(document).on('change',"input[type='url']", function(e) {
            alert("hide");
});
于 2013-06-21T17:20:48.360 回答
-2
    <!DOCTYPE html>
<html>
<head>
    <title>test change</title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
</head>
<body>
    <input id='inurlprodcgs' type="url" name="urlprodcgs" autocomplete="off" required/>
</body>
    <script>
        if (typeof jQuery != 'undefined') {
            alert("jQuery library is loaded!");
        }else{
            alert("jQuery library is not found!");
        }
        $("input[type='url']").change(function(e) {
            alert("hide");
        });
    </script>
</html>
于 2013-06-21T17:26:11.650 回答