为了账号安全,请及时绑定邮箱和手机立即绑定

为什么代码放到dw里运行没任何效果

把代码贴到dw里运行,网页上没效果,是哪的问题

正在回答

1 回答

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>JQ-test</title>

<style>

div { width: 500px; height: 200px; border: 1px solid green; margin: 0 auto; }

</style>

</head>

<body>


<div id="test">

<label></label><input type="text">

<input type="button" value="button1">

<input type="button" value="button2">

</div>


<!-- JS -->


<script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>

<script type="text/javascript">


$('#test input:eq(1)').on('click',function(event,title){

if(!title){title = 'button1'}


updata(title)

})


$('#test input:eq(2)').click(function(){

$('#test input:eq(1)').trigger('click','button2')

})


function updata(title){

$('#test label:first').text(title);

var $text = $('#test input:first');

if(!$text.val()){ $text.val(0) }

$text.val(parseInt($text.val())+1)

}


</script>

</body>

</html>

用我写的。

0 回复 有任何疑惑可以回复我~
#1

qq_细雨听荷_0 提问者

非常感谢!
2017-06-08 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么代码放到dw里运行没任何效果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信