Jquery代码未在测试站点上运行

时间:2011-02-10 22:54:25

标签: javascript jquery

以下是我专注的代码示例。我试图将它与我的测试网站合并,但代码不起作用。我不明白为什么,在这两种情况下我都在使用最新版本的Jquery(1.5)我使用Google的托管Api作为我的测试网站。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>

<script>
  $('#name-label').dblclick(function() {
    $("#name").val('some text');
  });
</script>

<div class="ctrlHolder">
  <label for="" id="name-label">Name</label>
  <input name="name" id="name" type="text" class="textInput small" />
  <p class="formHint">The name of the item you are submitting</p>
</div>

2 个答案:

答案 0 :(得分:4)

将它包装在$(document).ready(function() {});工作吗?

$(document).ready(function() {
    $('#name-label').dblclick(function(){
        $("#name").val('some text');
    });
});

答案 1 :(得分:-1)

$(function() {
  $('#name-label').dblclick(function(){
      $("#name").val('some text');
  });
}