$('button[data-id="id_select_gg"]').attr('title')
思路:使用document.title获取页面标题,使用value属性为文本框赋值,关键代码:
document.getElementById(input_id).value=document.title实例演示如下:
1、HTML结构
<html><head>
<title>TEST</title>
</head>
<body>
<input type="text" id="test"/>
<input type='button' value='点击按钮获取页面标题' onclick="fun()"/>
</body>
2、javascript代码
function fun(){var title = document.title
document.getElementById("test").value = title
}
3、效果演示