我试过“.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。