jquery append onclick无效

jquery append onclick无效,第1张

办法 一:

<script type="text/javascript">

function test(e) {

alert($(e).attr('id'))

$(e).hide()

}

jQuery(document).ready(function(){

$("#demoTable").append("<input type='button' id='btn1' value='按扭' onclick='test(this)' />")

})

</script>

办法二

<script type="text/javascript">

jQuery(document).ready(function(){

$("#demoTable").append("<input type='button' id='btn1' value='按扭' />").find('#btn1').click(function(){

alert($(this).attr('id'))

$(this).hide()

})

})

</script>

因为这段代码是动态生成标签。

it.append("<option onclick='GetCity()'>" + obj[i]["SIMTITLE"] + "</option>")

不妨换成一下代码试试

it.append("<option class="getcity">" + obj[i]["SIMTITLE"] + "</option>")

//jq1.9版本的话将live换成on,如果低版本仍然是live

$(".getcity").live("click",function(){

    //GetCity()代码

})

如果你的元素是用click事件append进来的,那你的功能函数必须放在这个click事件里面。

比如:

$(".clickMeToAppendElement").click(function() {

$(".toBeAppend").append("<li><span><i class=\"icon J_classtree\">这是元素内容</i>")

$(".J_classtree").on("click",function(){

alert("终于进来了")

})

)

如果你把函数放在click事件外面,最初加载页面的时候,$(".J_classtree")就找不到.J_classtree这个类,那段功能函数就添加不了了。

扩展资料:

关于上述click事件

click事件的写法:

方法一:

<!DOCTYPE html>

<html>

<head>

<title>Javascript中点击事件方法一</title>

</head>

<body>

<button id="btn">click</button>

<script type="text/javascript">

var btn = document.getElementById("btn")

btn.onclick=function(){

alert("hello world")

}

</script>

</body>

</html>

方法二:

<!DOCTYPE html>

<html>

<head>

<title>Javascript中点击事件方法二</title>

</head>

<body>

<button id="btn">click</button>

<script type="text/javascript">

var btn = document.getElementById("btn")

btn.addEventListener('click',function(){

alert("hello wrold")

},false)

</script>

</body>

</html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11723075.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存