因此,一旦用户开始在文本字段中输入,我有一些代码会检查复选框,但我无法取消选中用户是否决定删除他或她开始输入的所有内容并将文本字段留空。有什么帮助吗?谢谢!
<html>
<head>
<script type="text/javascript">
function checkvalue(val)
{
if(val.value == '')
document.getElementById('productCB').checked="false"
else
document.getElementById('productCB').checked="true"
}
</script>
</head>
<body>
<g:checkBox id="productCB" value="searchProduct" /> Product:
<g:textField id="productID" placeholder="Enter product here..." onkeypress="checkvalue(this)" />
</body>
</html>