我需要在点击锚标签时执行一些操作,为此我已经为选项卡分配了一个id,我在jQuery中编写了click事件,但它没有工作。
这里我的JSP代码是:
<li><a id="createBtn" href="#service-one" data-toggle="tab">CREATE</a></li>
我的jQuery代码是:
$("#createBtn").click(function() {
alert("Inside button click");
getScenarioName();
});
function getScenarioName() {
alert("Inside Method");
$.post("./GetScenarioName", {}, function(data, status) {
$("#scenario").html(data);
$('.selectpicker').selectpicker('refresh');
});
}
请帮帮我。
提前致谢, Suganth A。
答案 0 :(得分:3)
工作检查JSFIDDLE
确保包含jQuery,并在dom ready
之后绑定事件 $(document).ready(function(){
$("#createBtn").click(function() {
alert("Inside button click");
getScenarioName();
});
function getScenarioName() {
alert("Inside Method");
$.post("./GetScenarioName", {}, function(data, status) {
$("#scenario").html(data);
$('.selectpicker').selectpicker('refresh');
});
}
});
答案 1 :(得分:0)
将click事件置于就绪功能
$(document).ready(function () {
$("#createBtn").click(function() {
alert("Inside button click");
getScenarioName();
});
}