4
我試圖將屬性autoplay
添加到iframe。 然而,這個屬性只是一個標記,它沒有一個值:如何使用Nokogiri無價值地添加屬性
<iframe src="..." autoplay></iframe
在引入nokogiri添加它像一個屬性:
iframe = Nokogiri::HTML(iframe).at_xpath('//iframe')
iframe["autoplay"] = ""
puts iframe.to_s
---------- output ----------
"<iframe src="..." autoplay=""></iframe>"
不引入nokogiri有這樣的方式做這個還是應該在最後用正則表達式去除/=""/
?
謝謝