一直在尝试看看这是多么灵活。http://jsfiddle.net/PJSha/4/我已将 get 元素从 Name 更改为 ClassName 两者都有效,但当我尝试使用 Id 实现它时不起作用...是否有原因
代码:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.8.21/themes/base/jquery-ui.css" type="text/css" media="all" />
<input type="text" id="foo" class="bar" name="domain">
<div onclick="check_domain_input()">Click</div>
<div id="dialog" title="Attention!" style="display:none">
Please enter a domain name to search for.
</div>
<script>
function check_domain_input() {
var domain_val = document.getElementById('foo');
if (domain_val[0].value.length > 0) {
return true;
}
$( "#dialog" ).dialog();
return false;
}
</script>