我有下面的代码,如果有的话会得到setHomework(...)
,并要求您点击按钮向您显示数据。
id
下面的代码会自动转到数据,如果有id,则无需点击按钮。
<input type="text" id="date" value="<?php echo $_GET['id']?>" class="css-input" placeholder="Posting Date..." readonly="readonly" /><br /><br />
<input type="button" id="validate" value="Let's get to work!" class="btn" />
如何jQuery(document).ready(function() {
jQuery("#validate").click();
});
语句如果if
不为null,则执行jQuery代码,否则不要执行。我怎么能这样做#validate
我得到错误,有什么想法?
答案 0 :(得分:0)
<?php
if($_GET['id'] != NULL){
?>
<script>
jQuery(document).ready(function()
{
jQuery("#validate").click();
});
</script>
<?php }?>
</head>