我可以轻松地使用BS遍历通用标签,但我不知道如何查找特定标签。例如,如何查找<div style="width=300px;">
的所有出现?这可能与BS有关吗?
答案 0 :(得分:29)
以下内容应该有效
soup = BeautifulSoup(htmlstring)
soup.findAll('div', style="width=300px;")
有多种方法可以搜索标签。
要了解更多文字并使用它
答案 1 :(得分:5)
(function(angular) {
'use strict';
angular.module('myModule')
.controller('MainCtrl', ['$scope', 'config', function ($scope, config, ){
$scope.config = ?????????? ;
$scope.preferences = ???????????? ;
}]);
})(window.angular);