if语句带有html id

时间:2016-10-08 14:01:16

标签: php jquery

我有下面的代码,如果有的话会得到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我得到错误,有什么想法?

1 个答案:

答案 0 :(得分:0)

<?php 
if($_GET['id'] != NULL){

?>
<script>
 jQuery(document).ready(function()
 {
 jQuery("#validate").click();
 });
</script>
<?php }?>

</head>