为什么代码放到dw里运行没任何效果
把代码贴到dw里运行,网页上没效果,是哪的问题
把代码贴到dw里运行,网页上没效果,是哪的问题
2017-06-07
<!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>
用我写的。
举报